Click here to Skip to main content
Click here to Skip to main content

ASP.NET GridView Image Command Button Problem (Multiple PostBacks)

By , 10 Oct 2008
 

Last update: 2008-10-10 Updated template solution

To run the application, download and unzip it to a folder on your computer and open it with Visual Studio 2005 (Pro or Web Edition) and run it over the development server.

Screenshot - Running.gif

Introduction

I ran into the problem that my page was loaded twice after selecting a row in a GridView by clicking on a CommandField with Type equal to Image. I found out that two requests were sent from the client: the first request is not a PostBack request on my page (this is the request I didn't expect; the second request is a PostBack request on my page (this is the request I expected).

If something is completely strange, then I always check it in FireFox and to no much surprise, there is only one request (the expected PostBack request). Therefore I also checked it with Internet Explorer 6 and there the problem occurs once in about 4 times!?!?

To sum it up:

  • Internet Explorer 7: Always 2 requests
  • Internet Explorer 6: Sometimes it's okay, sometimes not
  • FireFox: Everything works correctly

Note: This behaviour is only present when using Image as type of the CommandField, with Link or Button, everything works great.

How I Would Do It When Everything Would Be Correct

The following ASPX definition shows a GridView with a CommandButton of type image:

<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" 
    DataSourceID="ObjectDataSource1" 
    OnSelectedIndexChanged="SelectedIndexChanged">
    <Columns>
        <asp:CommandField ButtonType="Image" 
             SelectImageUrl="~/Select.gif" ShowSelectButton="True" />
        <asp:BoundField DataField="A" HeaderText="A" SortExpression="A" />
        <asp:BoundField DataField="B" HeaderText="B" SortExpression="B" />
        <asp:BoundField DataField="C" HeaderText="C" SortExpression="C" />
    </Columns>
</asp:GridView>  

This GridView results in the problems I described in the introduction. Although, I really don't understand what could go wrong here, it simply doesn't work. If you compare the generated HTML for a GridView with a CommandButton of type Link and one of type Image, then you'll see that nothing is really different - except that once there will be only one request and once there will be two!

I spent some time Googling and found some workarounds. I assembled all the information that I found and show you in the following sections three workarounds along with their advantages and disadvantages.

Solution 1 - Use CommandButton of Type Link and Add the Image as HTML in the Link Text

This is the simplest workaround. I simply change the type of the CommandButton to be Link instead of Image and set the Text property to some HTML that will show the image:

<asp:GridView ID="GridView2" runat="server" AutoGenerateColumns="False" 
    DataSourceID="ObjectDataSource1">
    <Columns>
        <asp:CommandField ShowSelectButton="True" 
            SelectText="<img src='Select.gif' border=0 title='This is a Tooltip'>">
        </asp:CommandField>
        <asp:BoundField DataField="A" HeaderText="A" SortExpression="A" />
        <asp:BoundField DataField="B" HeaderText="B" SortExpression="B" />
        <asp:BoundField DataField="C" HeaderText="C" SortExpression="C" />
    </Columns>
</asp:GridView>

This works great but has one disadvantage: the localization of the tooltip text gets difficult. The whole HTML string has to be added to the local resource, which isn't quite nice.

Solution 2 - Switch to TemplateFields

To get a solution that is better localizable, I delete the CommandField column and add a template column that contains an ImageButton. To get the same behaviour, the CommandName has to be set to "Select".

<asp:GridView ID="GridView3" runat="server" AutoGenerateColumns="False" 
    DataSourceID="ObjectDataSource1">
    <Columns>
        <asp:TemplateField ShowHeader="false">
            <ItemStyle HorizontalAlign="Center" />
            <ItemTemplate>
                <asp:ImageButton ID="btnView" runat="server" 
                    CausesValidation="False" CommandName="Select"
                    ImageUrl="~/Select.gif" ToolTip="View" />
            </ItemTemplate>
        </asp:TemplateField>
        <asp:BoundField DataField="A" HeaderText="A" SortExpression="A" />
        <asp:BoundField DataField="B" HeaderText="B" SortExpression="B" />
        <asp:BoundField DataField="C" HeaderText="C" SortExpression="C" />
    </Columns>
</asp:GridView>

Custom Commands Sample

In order to get your custom commands to work, you can either use a ButtonField with ButtonType equal to Link and use the same trick to display the image as in solution 1 or use a template field as in solution 2. I prefer solution 2, but be sure that you include the CommandArgument in the definition, otherwise you won't have access to the row index.

The following sample shows this together with the approaches that do not work (see Tooltip for explanation as to what happens):

<asp:GridView ID="GridView4" runat="server" AutoGenerateColumns="False" 
              DataSourceID="ObjectDataSource1" OnRowCommand="RowCommand">
    <Columns>
        <asp:ButtonField ButtonType="Image" CommandName="MyCommand1" 
                         ImageUrl="~/Select.gif"
                         Text="Double PostBack in IE7 (sometimes in IE6)" />
        <asp:TemplateField ShowHeader="False">
            <ItemStyle HorizontalAlign="Center" />
            <ItemTemplate>
                <asp:ImageButton ID="btnView" runat="server" CausesValidation="False"
                                 CommandName="MyCommand2"
                                 CommandArgument="<%# Container.DataItemIndex %>"
                                 ImageUrl="~/Select.gif" 
                                 ToolTip="Works! Preferred solution." />
            </ItemTemplate>
        </asp:TemplateField>
        <asp:ButtonField ButtonType="Link" CommandName="MyCommand3" 
            Text="<img src='Select.gif' border=0 title='Works! But bad localizable.'>"
        />
        <asp:BoundField DataField="A" HeaderText="A" SortExpression="A" />
        <asp:BoundField DataField="B" HeaderText="B" SortExpression="B" />
        <asp:BoundField DataField="C" HeaderText="C" SortExpression="C" />         
    </Columns>
</asp:GridView>

Conclusion

There exists a problem in Internet Explorer that leads to multiple PostBacks when using a CommandButton with type Image. As long as this bug isn't fixed (or everybody uses FireFox;-)), we have to use some workarounds. In this article, I showed you three workarounds along with the scenario in which you can use them. In short: if you use template fields, you're always on the safe side.

If you have further information or other/better workarounds or even real solutions, then PLEASE post them below!!

History

  • 2007-08-09 Initial version
  • 2008-10-10 Changed template fields solution as proposed by Petr Behensky in his message post 

License

This article, along with any associated source code and files, is licensed under The Apache License, Version 2.0

About the Author

Urs Enzler
Architect bbv Software Services AG
Switzerland Switzerland
Urs Enzler is working for bbv Software Services in Switzerland as a Software Architect.
 
Blogger at planetgeek.ch

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
AnswerSolutionmemberZaibot22-Nov-10 5:57 
GeneralGeniusmemberLechu8116-Nov-10 17:48 
GeneralMy vote of 5memberJeff Allegi23-Oct-10 5:23 
GeneralA little problem with gridviewmemberMarcel OUEDRAOGO1-Apr-10 6:26 
GeneralThanksmemberBilly Camargo4-Mar-10 16:27 
Generalthanksmemberonurand20-Feb-10 6:27 
GeneralRe: thanksmemberUrs Enzler21-Feb-10 2:32 
GeneralThank you very muchmembermehdi_javan8-Nov-09 23:57 
GeneralRe: Thank you very muchmemberUrs Enzler18-Nov-09 22:52 
GeneralVery simple!memberjomree3-Nov-09 22:00 
Thank you for this solution, effective and easy to implement!
GeneralRe: Very simple!memberUrs Enzler18-Nov-09 22:53 
GeneralThe Magicmembermhenrique15-Oct-09 8:05 
GeneralAnother work aroundmemberaida_dizdar7-Jun-09 22:21 
GeneralDouble postback causes AJAX to hangmemberJOZS26-Feb-09 22:06 
JokeThank you very much!memberzambizi9-Oct-08 1:18 
GeneralRe: Thank you very much!memberUrs Enzler10-Oct-08 12:37 
Generaltemplate works wellmemberPetr Behensky29-Sep-08 23:05 
GeneralRe: template works wellmemberUrs Enzler6-Oct-08 4:33 
GeneralRe: template works wellmemberUrs Enzler9-Oct-08 2:41 
GeneralMy fixmemberPartenon6-Aug-08 3:40 
GeneralThanksmemberH@is@here26-Jun-08 4:39 
GeneralRe: ThanksmemberUrs Enzler26-Jun-08 6:05 
GeneralGreat Post!memberrk11384-Apr-08 11:56 
GeneralRe: Great Post!memberUrs Enzler20-Jun-08 4:53 
GeneralFound a better fixmembersrone31-Mar-08 14:52 
GeneralWorkaround 1: Excellentmemberjjosedelh13-Sep-07 23:20 
GeneralRe: Workaround 1: ExcellentmemberUrs Enzler13-Sep-07 23:24 
GeneralWorkaround 2, private membermemberdressr231-Aug-07 4:30 
GeneralRe: Workaround 2, private membermemberUrs Enzler31-Aug-07 4:44 
GeneralThis is a better solution!memberthuannpc9-Aug-07 20:34 
Generalsimple advicememberGevorg9-Aug-07 10:05 
GeneralRe: simple advicememberUrs Enzler9-Aug-07 21:11 
GeneralRe: simple advicememberGevorg10-Aug-07 9:48 
AnswerRe: simple advicememberUrs Enzler12-Aug-07 21:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130617.1 | Last Updated 10 Oct 2008
Article Copyright 2007 by Urs Enzler
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid