Let me start out by saying installation thus far has been easy. I followed the instructions, but when I go to the Login screen I get the following error:
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: The base class includes the field 'scriptManager', but its type (System.Web.UI.ScriptManager) is not compatible with the type of control (System.Web.UI.ScriptManager).
Source Error:
Line 21: <div id="allContent">
Line 22: <form id="form1" runat="server">
Line 23: <asp:scriptmanager ID="scriptManager" runat="server" EnablePartialRendering="true" />
Line 24: <div id="headerRegion">
Line 25: <div class="welcomePanel"> |
Source File: /site.master Line: 23
Version Information: Microsoft .NET Framework Version:2.0.50727.1433; ASP.NET Version:2.0.50727.1433
I go to my hosting page control panel and look at the extension that my site is using. It says that I am using 2.0. When I change it to 1.1, I get past that error and then I get the following error:
Server Error in '/' Application.
Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration> |
Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration> |
I have checked and rechecked that custom errors is set to "Off". I know that XML is case sensitive and have made sure all is correct.
Does anyone have any ideas on what to do next??
Thanks,
Doyen