几天前我得到了这个 Web 应用程序,但我已经遇到了一个问题。
当我使用 HL1 = 加载页面时http://localhost:8001/
,UpdatePanel 根本不会出现。
虽然当我使用 HL2 = 加载页面时http://localhost:8001/Default.aspx
,它会完全显示出来。
[编辑:添加 HL1、HL2 标签]
仅供参考,UpdatePanel 是母版页的一部分。
有什么建议么?
谢谢, 阿比纳夫
[编辑:更新面板的代码]
<asp:UpdatePanel ID="upan" runat="server" >
<ContentTemplate>
<fieldset style="width:320px; padding:2px;margin-top:20px;margin-bottom:5px;" onmouseover="showHelp('quickAccess')" onmouseout="g_Popup.hide()">
<legend>Quick Access</legend>
<span style="vertical-align: middle">Dummy #
<asp:TextBox ID="txtSearchDummy" clientidmode="Static" runat="server" MaxLength="9" Width="70px" Height="15px" style="margin-top: 5px"></asp:TextBox>
<asp:Button ID = "btnSearchDummy" clientidmode="Static" runat="server" OnClick="btnSearchDummy_Click" style="display:none"/>
<button onclick="return quickAccess()" lang="javascript" type="submit" class="button_enabled" style="margin-left: 5px;">
<img alt="" src="images/lightning.gif"></img><span>Find Dummy</span></button></span>
</fieldset>
</ContentTemplate>
</asp:UpdatePanel>