dont know if this question isfor this forum, anyways how can I pass a variable to another page? ex www.jewel.com/n=myName&l=Is
then how will another page get the value?
Thanks,
Printable View
dont know if this question isfor this forum, anyways how can I pass a variable to another page? ex www.jewel.com/n=myName&l=Is
then how will another page get the value?
Thanks,
you can use the querystring
Page One:
VB Code:
response.redirect("lala.aspx?var=50")
Page Two:
VB Code:
Dim strVar as string = request.querystring("var")
Thanks!