This the end of my code
...
If lblErrMsg.Text = "" Then
Response.Redirect("UserPage.aspx")
End If
I want to pass the value of txtUser(I create It in the current page…) to the UserPage.aspx.
Thank’s for helping me …
This is in VB.net not in c# Please
C# Version
1) Use querystring
and in userp.aspx.cs,
2)Use Session
Setting session in first page before redirecting
and in user.aspx.cs
EDIT :VB.NET VERSION
1) Use Querystring
and in user.aspx.vb
2)Use Session
Setting Session in firstpage
and in user.aspx.vb.