Hi all,
I have a web-site with check-boxes (and much more ) . Im checking on of them and then im pressing the submit button the data transfer to next page (results.aspx).
The filed EX1 at database is BIT
Well, im transfering data from page find.aspx to page results.aspx :
targetURL &= "&ex1=" & Server.UrlEncode(ex1.Checked)
Response.Redirect(targetURL)
After, at results.aspx have the following code:
Dim ex1 As String
Go to the complete details ...