My website uses Telerik RadGrid version ASP.NET AJAX. In mid-July, after Google updated Chrome, for a while, the page using RadGrid kept reloading continuously and added ? at the end of the address. ctl00_ContentPlaceHolder1_gvArticleChangePage=1, had to restart IIS to resolve the issue, but it reoccurred after a few days. At the same time, opening it with Safari and Firefox had no issues at all. I suspect that Chrome has updated some feature, so may I ask how to fix.
All pages using radgrid are affected, for example, one radgrid is currently affected.
<telerik:RadGrid ID="gvResults" runat="server" AutoGenerateColumns="False" AllowPaging="True" AllowSorting="True" Skin="Windows7" GridLines="None" AllowMultiRowSelection="True">
<PagerStyle Mode="NextPrevAndNumeric" PagerTextFormat="Change page: {4} {5} văn bản / {1} trang" PageSizeLabelText="S12" />
<MasterTableView ClientDataKeyNames="Id" AllowMultiColumnSorting="True" NoMasterRecordsText="Không tìm thấy dữ liệu.">
<Columns>
<telerik:GridBoundColumn HeaderText="Số ký hiệu" DataField="Notation" HeaderStyle-Width="120px">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn HeaderText="Ngày ký" DataField="CreatedDate" HeaderStyle-Width="70px" DataFormatString="{0:dd/MM/yyyy}">
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>
<ClientSettings EnableRowHoverStyle="true">
<Selecting AllowRowSelect="True" />
<ClientEvents OnCommand="gvResults_Command" />
</ClientSettings>
</telerik:RadGrid>
