For some strange reason when I issue a post back (by clicking a button), the page performs the postback but the resultant page is completely blank. If I try to view page source I get a Confirm Form Resubmission message (using chrome).
However if I press f5 a few times, eventually the correct page will load.
I noticed that this usually happens when the button press causes some sort of database access. Why does this happen and how can I avoid it?
EDIT: I noticed that this started happening more frequently when I added the following code however it's always been happening from time to time even before:
protected void BindPartList()
{
if (UnitsDropDown.Text == "Imperial")
{
if (PartListGridView.Columns.Count > 4)
PartListGridView.Columns.Remove(PartListGridView.Columns[4]);
BoundField colIndex4 = new BoundField();
colIndex4.DataField = "IMPUNITS";
colIndex4.HeaderText = "Unit";
colIndex4.SortExpression = "IMPUNITS";
PartListGridView.Columns.Add(colIndex4);
PartListGridView.DataSourceID = "ImpPartInfoObjectSource";
}
else
{
if (PartListGridView.Columns.Count > 4)
PartListGridView.Columns.Remove(PartListGridView.Columns[4]);
BoundField colIndex4 = new BoundField();
colIndex4.DataField = "DWGUNIT";
colIndex4.HeaderText = "Unit";
colIndex4.SortExpression = "DWGUNIT";
PartListGridView.Columns.Add(colIndex4);
PartListGridView.DataSourceID = "MetricPartInfoObjectSource";
}
PartListGridView.DataBind();
}
Front end looks like:
<asp:GridView ID="PartListGridView" runat="server" ShowHeaderWhenEmpty="True" AutoGenerateColumns="False"
Width="100%" Font-Size="11pt" DataKeyNames="PARTNUM" AllowSorting="true">
<Columns>
<asp:BoundField DataField="PARTNUM" HeaderText="PARTNUM" SortExpression="PARTNUM"
ReadOnly="True" />
<asp:BoundField DataField="PARTDESC" HeaderText="PARTDESC" SortExpression="PARTDESC" />
<asp:BoundField DataField="CATEGORY" HeaderText="CATEGORY" SortExpression="CATEGORY" />
<asp:BoundField DataField="COLOUR" HeaderText="COLOUR" SortExpression="COLOUR" />
</Columns>
</asp:GridView>
in addition to the two datasources, of course
Thanks,