Selasa, 07 Januari 2014

Solution Problem "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."

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.


if we have error message this in asp.net when we make new .aspx we must add this below:

<asp:ScriptManager ID="ScriptManager1" runat="server" />
or
<asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server" />

example file default.aspx

<%@ Page Title="" Language="C#" MasterPageFile="~/cr.Master" AutoEventWireup="true"
    CodeFile="AllPengeluaran.aspx.cs" MaintainScrollPositionOnPostback="true" Inherits="Pengeluaran_ALL_AllPengeluaran" %>

<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="CntnPlaceBreadcrumb" runat="server">
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="CntnPlaceMain" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" />
    <asp:Panel ID="pnlPengeluaranAll" runat="server">
    <fieldset>
        <table>
            <tr>
                <td>
                    TANGGAL TRANSAKSI
                </td>
                <td>
                    :
                </td>
                <td>
                    <asp:TextBox ID="txtInputTanggall" runat="server" border-color="darkgreen"></asp:TextBox>
                </td>
                <td>
                    <asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="~/images/calendar.gif" />
                </td>
                <td>
                    <asp:CalendarExtender ID="cldpilihtanggalAll" Enabled="true" Animated="true" runat="server"
                        TargetControlID="txtInputTanggall" PopupButtonID="ImageButton1">
                    </asp:CalendarExtender>
                </td>
            </tr>
        </table>
        </fieldset>
    </asp:Panel>
</asp:Content>