Click here to Skip to main content
6,596,602 members and growing! (19,609 online)
Email Password   helpLost your password?
Web Development » ASP.NET » General     Beginner License: The Apache License, Version 2.0

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

By Urs Enzler

This article describes workarounds to solve the problem of multiple postbacks when using a command button of type image in an ASP.NET GridView (Internet Explorer).
C#, Javascript, CSS, HTML, XHTML.NET 2.0, .NET 3.0, .NET 3.5, ASP, ASP.NET, Ajax, Dev
Posted:9 Aug 2007
Updated:10 Oct 2008
Views:71,341
Bookmarked:26 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
10 votes for this article.
Popularity: 4.10 Rating: 4.10 out of 5
1 vote, 11.1%
1

2
1 vote, 11.1%
3
2 votes, 22.2%
4
5 votes, 55.6%
5

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


Member
Urs Enzler is working for bbv Software Services in Switzerland as a Senior Software Designer and architect.

He is also a member of the NMock2 development team (http://sourceforge.net/projects/nmock2)

Right in time after finishing his Master of Computer Science at the ETH in Zurich (Switzerland) in 2002, .net was ready to be learned and used. Since then he has become a real .net maniac.

Blogger at
planetgeek.ch
Occupation: Architect
Company: bbv Software Services AG
Location: Switzerland Switzerland

Other popular ASP.NET articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 25 (Total in Forum: 25) (Refresh)FirstPrevNext
GeneralThank you very much Pinmembermehdi_javan55mins ago 
GeneralVery simple! Pinmemberjomree23:00 3 Nov '09  
GeneralThe Magic Pinmembermhenrique9:05 15 Oct '09  
GeneralAnother work around Pinmemberaida_dizdar23:21 7 Jun '09  
GeneralDouble postback causes AJAX to hang PinmemberJOZS23:06 26 Feb '09  
JokeThank you very much! Pinmemberzambizi2:18 9 Oct '08  
GeneralRe: Thank you very much! PinmemberUrs Enzler13:37 10 Oct '08  
Generaltemplate works well PinmemberPetr Behensky0:05 30 Sep '08  
GeneralRe: template works well PinmemberUrs Enzler5:33 6 Oct '08  
GeneralRe: template works well PinmemberUrs Enzler3:41 9 Oct '08  
GeneralMy fix PinmemberPartenon4:40 6 Aug '08  
GeneralThanks PinmemberH@is@here5:39 26 Jun '08  
GeneralRe: Thanks PinmemberUrs Enzler7:05 26 Jun '08  
GeneralGreat Post! Pinmemberrk113812:56 4 Apr '08  
GeneralRe: Great Post! PinmemberUrs Enzler5:53 20 Jun '08  
GeneralFound a better fix Pinmembersrone15:52 31 Mar '08  
GeneralWorkaround 1: Excellent Pinmemberjjosedelh0:20 14 Sep '07  
GeneralRe: Workaround 1: Excellent PinmemberUrs Enzler0:24 14 Sep '07  
GeneralWorkaround 2, private member Pinmemberdressr25:30 31 Aug '07  
GeneralRe: Workaround 2, private member PinmemberUrs Enzler5:44 31 Aug '07  
GeneralThis is a better solution! Pinmemberthuannpc21:34 9 Aug '07  
Generalsimple advice PinmemberGevorg11:05 9 Aug '07  
GeneralRe: simple advice PinmemberUrs Enzler22:11 9 Aug '07  
GeneralRe: simple advice PinmemberGevorg10:48 10 Aug '07  
AnswerRe: simple advice PinmemberUrs Enzler22:03 12 Aug '07  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 10 Oct 2008
Editor: Deeksha Shenoy
Copyright 2007 by Urs Enzler
Everything else Copyright © CodeProject, 1999-2009
Web18 | Advertise on the Code Project