0

当更新面板回发到服务器时,我遇到了 Javascript 未加载到 asp.net 的问题,问题是 javascript 代码不在更新面板所在的同一页面中,因此我可以将其放入 pageLoad() 函数中,就像这样:

<script src="js/keyboard.js" type="text/javascript"></script>

我使用 ASP.Net 4 和 c#,这是我的代码:

<link href="css/keyboard.css" rel="stylesheet" />
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
    <ContentTemplate>
        <div style="text-align: left; padding-right: 140px">
            <dx:aspxcombobox id="comboBoxLangauge" clientinstancename="comboboxLang"
                cssclass="combo" runat="server" width="140px" clientidmode="Static">
                <Items>
                    <dx:ListEditItem Text="English to Kurdish" Value="1" Selected="true" />
                    <dx:ListEditItem Text="Kurdish to English" Value="2" />
                </Items>
                <ClientSideEvents SelectedIndexChanged="IndexChanged" />            
            </dx:aspxcombobox>
        </div>
        <br />
        <br />
        <asp:Button ID="btnTranslate" runat="server" Text="Search" ClientIDMode="Static"
            CssClass="Search" OnClick="btnTranslate_Click" />
        <asp:TextBox ID="txtBoxWord" runat="server" ClientIDMode="Static"
            class="keyboardInput Search" Style="width: 260px; direction: ltr"></asp:TextBox>

        <asp:AutoCompleteExtender ID="autocom" ClientIDMode="Static" runat="server" CompletionSetCount="10"
            EnableCaching="true" MinimumPrefixLength="1" TargetControlID="txtBoxWord" ServicePath="~/translator/AutoComplete.asmx" ServiceMethod="GetCompletionList">
        </asp:AutoCompleteExtender>

        <asp:RoundedCornersExtender ID="RoundedCornersExtender1" runat="server" TargetControlID="OutPanel"
            Corners="All" Radius="5" BorderColor="Silver">
        </asp:RoundedCornersExtender>
        <br />
        <br />
        <div id="OutPanel" runat="server" clientidmode="Static" style="width: 440px; height: 200px; overflow: auto; margin-left: auto; margin-right: auto; padding-top: 10px;" visible="false">
        </div>
    </ContentTemplate>
</asp:UpdatePanel>
<div id="OutPanel" runat="server" clientidmode="Static" style="width:440px;height:200px;overflow:auto;margin-left:auto;margin-right:auto;padding-top:10px;" visible="false">

</div>
        </ContentTemplate>
    </asp:UpdatePanel>
4

1 回答 1

0

“问题是javascript代码不在更新面板所在的同一页面中”

而确保您的JavaScript在页面上可用UpdatePanel以正确加载它。

于 2012-12-07T06:02:31.767 回答