LawS Posted December 19, 2003 Posted December 19, 2003 In another thread I found out how to pass a variable using Querystring: "blah.aspx?var1=ABC&var2=DEF" How do I read the variable in .aspx.vb? Quote
millenniasp Posted December 19, 2003 Posted December 19, 2003 myVariable = Request.Params("var1") Quote
Moderators Robby Posted December 19, 2003 Moderators Posted December 19, 2003 Dim s as string = request.querystring("var1") Quote Visit...Bassic Software
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.