Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

passing forms input

Status
Not open for further replies.

rjkealey

Programmer
Feb 14, 2003
84
US
Hi All
I have a newbie question I am trying to pass username to second form can't get it to work in NET works great in asp here is sample code


Dim strUserName As String = Request.Form("strUserName")


lblWelcome.Text = "Hello " & strUserName & "
Please Choose Your Favorite Team "

Thanks
RJKealey

 
gagz: Very useful indeed. In your opinion, which would be more advisable, to transfer a parameter via QueryString or via Server.Transfer? Seems in the latter the entire aspx page is made available for transfering strings, etc.. to the next aspx page but strikes me as more server intensive than a simple QueryString. Not sure myself on this.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top