Forum: ASP Feb 28th, 2008 |
| Replies: 3 Views: 1,276 If you need any further help, let me know. |
Forum: ASP Feb 22nd, 2008 |
| Replies: 10 Views: 2,232 Also, try adding hidden input fields. It should still send the value through querystring with the GET method. |
Forum: ASP Feb 15th, 2008 |
| Replies: 88 Views: 7,123 You probably don't even need middlecategory. If you wish, you should do it this way:
SQL = "SELECT TC.topcategory, DISTINCT(MC.middlecategory) "&_
"FROM tbtopcategory TC, tbmiddlecategory MC,... |
Forum: ASP Feb 14th, 2008 |
| Replies: 88 Views: 7,123 Okay, then this is the way I would do it if you don't mind me rewriting:
Response.Write("<table width='570' border='1'>")
Do While Not RS.EOF
Response.Write("<tr>")
For i = 1 To 3
If... |
Forum: ASP Feb 14th, 2008 |
| Replies: 3 Views: 1,053 it should go like this:
ondblclick="OnDetailsChg('<%=svrgContact%>')"
sub onDetailsChg(id)
response.redirect ("../asp/PalContactDetail.asp?id=" & id)
end sub |
Forum: ASP Jan 28th, 2008 |
| Replies: 3 Views: 1,348 well did it work?
If not, test what HTTP_USER_AGENT puts out and bind MSIE to that. |
Forum: ASP Jan 21st, 2008 |
| Replies: 19 Views: 3,566 now is this going to be done on page or doing a post to the server? Doing it on page in classic ASP is called javascript. On the server just requires a post to the server and a return will post... |
Forum: ASP Jan 18th, 2008 |
| Replies: 6 Views: 2,052 you're welcome, I hope it helps. |
Forum: ASP Nov 8th, 2007 |
| Replies: 20 Views: 5,422 the reason why your last code isn't working like you thought is because you are calling the <% %> when the server runs the code. Therefore, you are essentially setting session("imagecap...) 5 times,... |