Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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,

share|improve this question
are you creating controls on the page dynamically? a little sample code goes a long ways too – shiznit123 Oct 15 '12 at 19:36
post some code matey! – Paul Sullivan Oct 15 '12 at 19:46
just added some code – Tony Oct 15 '12 at 19:54
Where do you call BindPartList() method from? – M4N Oct 15 '12 at 19:55
When you say it's returning a "blank screen", does that mean there is absolutely NO HTML at all being returned, or is there a head/body/form, etc, but just no datagrid? – Scottie Oct 15 '12 at 20:04
show 5 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.