2013-12-17 54 views
2

我將此代碼添加到Web.config,然後我將我的項目或我的網站上傳到Godaddy Server,並向我顯示此錯誤。 有人可以幫我解決問題嗎? 謝謝你們!'/'應用程序中的服務器錯誤。 <asp:ToolkitScriptManager ID =「ToolkitScriptManager1」runat =「server」>

![Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information][1] 
在 '/' 應用

服務器錯誤。

Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information. 

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 



Exception Details: System.Reflection.ReflectionTypeLoadException: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information. 

Source Error: 


Line 74:       </td> 
Line 75:       <td style="text-align: right"> 
Line 76:        **<asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">** 
Line 77:        </asp:ToolkitScriptManager> 
Line 78:        <asp:Label ID="Label25" runat="server" Font-Bold="True" Font-Size="X-Small" Text=" DD/MM/YYYY"></asp:Label> 

Source File: d:\hosting\11645199\html\newstudents.aspx Line: 76 

Stack Trace: 
+0

我的GoDaddy服務器有同樣的問題。使用常規ScriptManager時運行良好。但是,然後我的CalendarExtender失敗。將嘗試通過GoDaddy找到一些信息。 –

+1

我更改web.config中的信任級別。 ' '。現在它也適用於我在GoDaddy服務器上! –

回答

1

通過更改Ajax工具包版本來嘗試。請確保它是最新的。

+0

這應該是一個評論,而不是一個答案。 –

0

您是否添加了此代碼?

<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %> 
相關問題