У меня на странице есть форма с неколькими полями и кнопкой. При нажатии на кнопку данные должны отправляться на сервер и там обрабатываться. Использую стандартные asp контролы: asp:TextBox и asp:Button. В серверной части обрабатываю событие OnClick у кнопки.
Если страница не кеширована, то все нормально. Если же нет, то возникает ошибка Provided security token is invalid!
Provided security token is invalid!
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: Bitrix.Security.BXCsrfTokenValidationException: Provided security token is invalid!
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[BXCsrfTokenValidationException: Provided security token is invalid!]
Bitrix.Security.BXCsrfToken.ValidateToken(String token) +92
Bitrix.Security.BXCsrfToken.ValidatePost() +227
Bitrix.UI.TemplateRequisite.PageInitComplete(Object sender, EventArgs e) +53
System.EventHandler.Invoke(Object sender, EventArgs e) +0
System.Web.UI.Page.OnInitComplete(EventArgs e) +11032014
Bitrix.UI.BXPublicPage.OnInitComplete(EventArgs e) +16
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1674
Кто знает как побороть это на кешированных страницах?
Кеширование настроено так:
<%@ OutputCache Duration="420" Location="ServerAndClient" VaryByParam="*" %>
Если страница не кеширована, то все нормально. Если же нет, то возникает ошибка Provided security token is invalid!
Provided security token is invalid!
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: Bitrix.Security.BXCsrfTokenValidationException: Provided security token is invalid!
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[BXCsrfTokenValidationException: Provided security token is invalid!]
Bitrix.Security.BXCsrfToken.ValidateToken(String token) +92
Bitrix.Security.BXCsrfToken.ValidatePost() +227
Bitrix.UI.TemplateRequisite.PageInitComplete(Object sender, EventArgs e) +53
System.EventHandler.Invoke(Object sender, EventArgs e) +0
System.Web.UI.Page.OnInitComplete(EventArgs e) +11032014
Bitrix.UI.BXPublicPage.OnInitComplete(EventArgs e) +16
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1674
Кто знает как побороть это на кешированных страницах?
Кеширование настроено так:
<%@ OutputCache Duration="420" Location="ServerAndClient" VaryByParam="*" %>