Hi!
I am trying to pass a value from page 1 to page 2. I was wandering what is the procedure/code for that? For eg. page1.txtloginID = page2.label1
And is there a recommended site that I read up on ASP.NET? Thanks. :)
Alexandar
Printable View
Hi!
I am trying to pass a value from page 1 to page 2. I was wandering what is the procedure/code for that? For eg. page1.txtloginID = page2.label1
And is there a recommended site that I read up on ASP.NET? Thanks. :)
Alexandar
if u'r passing Form object from Page1 to page2
then u can try this option (i tried it in ASP 4.0)
hope this helps....Code:<% =Request.Form("txtLoginId") %> ' use this in page2.asp
sorry!! code is not appearing in my last post..
code is "Request.Form("txtLoginID")"