hi,
i want to send a data by using href. like this sample.aspx?data=14 but i don’t know how to get this data back on the other page?
Use strData = Request(“data”)
if you used method = “post”, you would use request.form to retrieve the data.
Request.QueryString[“data”]
use method=”post”
Leave a Reply
You must be logged in to post a comment.