I have a simple one button shape and a grid. When the user clicks the button, their name and the time at which they clicked are recorded. I use the meta tag to refresh the page every 30 seconds. It works fine in IE, Chrome, and Firefox, but in Edge browsers, when it is updated, it gives the user a pop-up message to resend each time, to re-send and register them again every time.
<meta http-equiv="refresh" content="30" />
<form id="form1" runat="server">
<asp:Button ID="btnSave" runat="server" Text="Pick Up"/>
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False">
<Columns>
<asp:BoundField DataField="PLUSER" HeaderText="User" S
SortExpression="name" ItemStyle-Width="100px" />
<asp:BoundField DataField="PLDATE" HeaderText="Date"
SortExpression="timeDate" ItemStyle-Width="250px" />
</Columns>
</asp:GridView>
</form>
Is there a parameter or something special about the edge with respect to the meta tags?
Scath source
share