In my application this code:
CreditsSubjectsNamesTeacherCount n = new CreditsSubjectsNamesTeacherCount();
Session["UserID"] = n.GenerateTeacherCountCrossRegions(txtStartYear.Text.CheckOnEmptyYear(), ((UserInformation)Session["UserInformation"]).UserName);
Response.Redirect("page.aspx");
doesnt redirect if the method GenerateTeacherCountCrossRegions was executing for a long time(~ >10 min). What can cause this problem?
PS: added:
<httpRuntime executionTimeout="18000".. >
but it didnt help.
Thank you.