Posts: 198
Location: High Wycombe, Buckinghamshire, London
|
Hm, if you want to pass a Session from one .NET page to the another .NET page in C# do this =
void Page_Load(Object sender, EventArgs e)
{
Session["user"] = "authenticated"; // change this to whatever you want to recongnise them
}
Thank automatically starts a session, and the next page you can use it to see if they are allowed in or not.
__________________
[ Insert witty, yet highly intelligent signature here ]
|