PROKA Posted April 7, 2005 Posted April 7, 2005 I need a good tutorial about how to give parameters to the page. ( see the title ) Quote Development & Research Department @ Elven Soft
Moderators Robby Posted April 7, 2005 Moderators Posted April 7, 2005 There's not much to say except.... http://www.xtremedotnettalk.com/showthread.php?myVar=92046&myOtherVar=hello Start your string after the question (?) mark, the first part is the variable name then an equal (=) sign, the second part is the value. To concat many items together use the ampersand (&). In your code you would receive the string like this... dim s1 as string = string.empty If not request.querystring("myVar") = nothing then s = request.querystring("myVar") end if dim s2 as string = string.empty If not request.querystring("myOtherVar") = nothing then s2 = request.querystring("myOtherVar") end if 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.