Click to See Complete Forum and Search --> : Passing value to another page


alexandar
September 6th, 2002, 09:20 PM
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

bharadwajrv
September 9th, 2002, 01:38 AM
if u'r passing Form object from Page1 to page2

then u can try this option (i tried it in ASP 4.0)


<% =Request.Form("txtLoginId") %> ' use this in page2.asp


hope this helps....

bharadwajrv
September 9th, 2002, 01:42 AM
sorry!! code is not appearing in my last post..

code is "Request.Form("txtLoginID")"