0

こんにちは、Ajax を使用するのはこれが初めてです。Visual Studio 2010 ツールボックスに ajax を追加し、テキスト ボックスにカレンダーを表示しました。サイトを実行すると、このエラーが発生します。

MissingManisfestResourceException

Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "AjaxControlToolkit.Properties.Resources.NET4.resources" was correctly embedded or linked into assembly "AjaxControlToolkit" at compile time, or that all the satellite assemblies required are loadable and fully signed.

今、私は行方不明だと言っていますExtenderControlBase。どこで入手できますか?

私のカレンダーの私のコード:

 <asp:TextBox ID="txtBday" runat="server" 
            style="z-index: 1; left: 327px; top: 436px" Height="22px"></asp:TextBox><asp:CalendarExtender
                ID="Birthday" runat="server"
            onclientdateselectionchanged="CheckDateEalier" TargetControlID="txtBday" 
            PopupButtonID="btnBirth" PopupPosition="TopRight" >
            </asp:CalendarExtender>
        <asp:ImageButton ID="btnBirth" runat="server" 
            ImageUrl="~/images/calendaricon.jpg" />
4

1 に答える 1

0

コンテンツ ファイルの先頭にあるアセンブリを参照するのを忘れていたようで、ここにスクリプト マネージャーが必要です。

 <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>   
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
 <body>
<form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server" />
    <asp:TextBox ID="TB" runat="server" />
<asp:CalendarExtender ID="C" runat="server" TargetControlID="TB">
</asp:CalendarExtender>


</form>
</body>
</html>
于 2012-12-01T03:21:05.427 に答える