简体   繁体   中英

Image Button not working in update panel

I have use image button in update panel to show Image. Locally it working fine but when i host it in server that time IE browser can not show image after click on Image button.

Firfox & chrome working fine But IE 10.0.11.

   <asp:UpdatePanel ID="upBanners" UpdateMode="Always" runat="server">
    <ContentTemplate>

    <table class="tab_nobr" border="0" cellpadding="0" cellspacing="0">
    <tbody>
        <tr>
            <th><asp:Label ID="lblCategory" runat="server"  Text="<%$Resources:Default, Category %>"></asp:Label></th>
            <th>
                <asp:DropDownList ID="ddlCategory" runat="server">
                    <asp:ListItem Text="DubLi.com" Value="DubLi.com" Selected="True"></asp:ListItem>
                    <asp:ListItem Text="Network" Value="Network"></asp:ListItem>
                    <asp:ListItem Text="Partner Program" Value="Partner Program"></asp:ListItem>
                    <asp:ListItem Text="Christmas Banners" Value="Xmas"></asp:ListItem>
                </asp:DropDownList> 
            </th>
            <th><asp:Label ID="lblLang" runat="server" Text="<%$Resources:Default, Language %>"></asp:Label></th>
            <th>
                <asp:DropDownList ID="ddlLanguage" runat="server"></asp:DropDownList>   
            </th>
            <th><asp:ImageButton ID="imgGO" runat="server" AlternateText="GO" ImageUrl="~/Images/button_go.gif" OnClick="OnBannerOptionChanged"/></th>
            <th class="p100">&nbsp;</th>
            <th></th>
        </tr>
    </tbody>
</table>

<div class="bannerview_first">
<asp:GridView ID="grdViewBanner" runat="server" GridLines="None" Width="100%" AutoGenerateColumns="false" ShowHeader="false" BorderStyle="None" BorderWidth="0" CellPadding="0" CellSpacing="0">
    <Columns>
        <asp:TemplateField HeaderText="">
            <ItemTemplate>
                <div class="bannerview">
                    <img id="imgBannerSrc" runat="server" alt="" src='<%# Eval("ImageURL") %>' /><br />
                    <span><label ID="lblTitle" runat="server"><%# Eval("Title") %> : </label></span><label ID="lblTitleVal" runat="server"><%# Eval("TitleVal") %></label><br/>
                    <span><label ID="lblDimension" runat="server"><%# Eval("Dimension") %> : </label></span><label ID="lblDimensionVal" runat="server"><%# Eval("DimensionVal") %></label><br/>
                    <span><label ID="lblCode" runat="server"><%# Eval("Code") %> : </label></span> 
                    <pre class="code" style="white-space:normal" ><%# Eval("CodeVal") %></pre>
                    <div style="clear: both;"/>
                </div>
            </ItemTemplate>
        </asp:TemplateField>
     </Columns>
</asp:GridView>
</div>       </ContentTemplate>  </asp:UpdatePanel>

C# code bellow:

  public void OnBannerOptionChanged(object sender, EventArgs e)
    {
        //Get the selected category and then the selected Language Values...
        string cat = this.ddlCategory.SelectedItem.Value;
        string lang = this.ddlLanguage.SelectedItem.Value;

        //Now cosntruct the directory structure...
        string dirStruct = "Banner/" + cat + "/" + lang;
        string dirStructPath = MapPath("~/" + dirStruct);
        if (Directory.Exists(dirStructPath))
        {
            BindBannerGrid(dirStruct);
            this.grdViewBanner.Visible = true;
        }
        else
        {
            this.grdViewBanner.Visible = false;
        }
    }

Locally all browser working fine but having problem on server & only not working IE

Thanks in Advance!!

我已经解决了这只是将Imagebutton替换为LinkBut​​ton :)

<asp:LinkButton ID="imgGO" runat="server" Text="Button" AlternateText="GO" ImageUrl="~/Images/button_go.gif" OnClick="OnBannerOptionChanged"><img src="/Images/button_go.gif" alt="" /></asp:LinkButton>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM