Tagged Questions
The directory.delete tag has no wiki summary.
2
votes
6answers
2k views
session variable object gets deleted on postback - ASP.NET
I have made something like the following code:
protected void Page_Load(object sender, EventArgs e)
{
Label1.Text = Session["loginid"].ToString();
}
protected void delete_click(object sender, ...
2
votes
2answers
348 views
why the session in iis automatically log out?
I used iis6, and when i called a function Directory.delete(), the all the session relate this website will be logged out.
and i debugged the website, i found no exception.
any one have ideas on this ?
...