Показать сообщение отдельно
  #2 (permalink)  
Старый 04.01.2011, 14:03
Аватар для Ex_Soft
Профессор
Отправить личное сообщение для Ex_Soft Посмотреть профиль Найти все сообщения от Ex_Soft
 
Регистрация: 19.12.2009
Сообщений: 164

Гм... Стоит хоть что-то записать в response:
protected void Application_AuthenticateRequest(object sender, EventArgs e)
{
	if ((Context.User == null || !Context.User.Identity.IsAuthenticated)
		&& Context.Request.Headers["X-Requested-With"] != null
		&& Context.Request.Headers["X-Requested-With"].Trim().ToLower() == "xmlhttprequest"
		&& Context.Request.Form["is403"] != null
		&& Context.Request.Form["is403"].Trim().ToLower() == "true")
	{
		Context.Response.StatusCode = 403;
==>		Context.Response.Write("blah-blah-blah");
		Context.Response.End();
	}
}

и XHR.status==403. Баг Opera?
__________________
"Helo, word!" - 17 errors 56 warnings
Ответить с цитированием