|
|
От: |
Cosma
|
|
| Дата: | 27.07.05 16:58 | ||
| Оценка: | |||
protected void Application_Error(Object sender, EventArgs e)
{
string ss=Server.GetLastError().InnerException.TargetSite.Name;
if(ss.ToUpper() == "GETENTIRERAWCONTENT") {
Server.ClearError();
Server.Transfer("WebForm2.aspx");
}
}