开发者

parser error in asp.net?

开发者 https://www.devze.com 2022-12-29 10:58 出处:网络
i developed a web application it is working fine in local server. when i uploaded the site in online when i click on some of the buttons i am getting this error. I am using master page, but i am not p

i developed a web application it is working fine in local server. when i uploaded the site in online when i click on some of the buttons i am getting this error. I am using master page, but i am not place the scriptmanager in master page,i place the scriptmanager tag in every page. It is working fine in local server but it is giving error in online. please can u help me. Thank you

Parser Error
Description: An error occurred during the parsing of a resource required to
service this request. Please review the following specific parse error det开发者_开发问答ails
and modify your source file appropriately.

Parser Error Message: Unknown server tag 'asp:ScriptManager'.

Source Error:

Line 9:  <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
Line 10: 
Line 11:     <asp:ScriptManager ID="ScriptManager1" runat="server">
Line 12:     </asp:ScriptManager>
Line 13:          <asp:UpdatePanel id="UpdatePanel2" runat="server" UpdateMode="Conditional">


In first place you should compare your local web.config with the production web.config. It may be possible that you have missed one or more configuration items related to ajax.

Here you have a reference about how to configure an ajax application:

http://www.asp.net/ajax/documentation/live/ConfiguringASPNETAJAX.aspx


Make sure the online site is set to use the right version of the .net framework. probably 3.5

0

精彩评论

暂无评论...
验证码 换一张
取 消