我在更新面板中使用图像按钮来显示图像。在本地它工作正常,但当我在服务器中托管它时IE浏览器无法显示图像后单击图像按钮。
Firfox& chrome工作正常但是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"> </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#代码如下:
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;
}
}
本地所有浏览器工作正常但在服务器上有问题&amp;只是没有工作IE
先谢谢!!
答案 0 :(得分:1)
我已经解决了这个刚被替换的Imagebutton转换为LinkButton:)
<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>