I can't load the site for some reason. i got Errors all the time.
How can i do it?
Any help?
Thank you.
The Error I get:
Server Error in '/' Application.
Configuration Error
Parser Error Message:
Could not load file or assembly 'System.Web.Extensions,
Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of
its dependencies. The system cannot find the file specified.
Source Error:
<pages>
<controls>
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add namespace="AjaxControlToolkit" assembly="AjaxControlToolkit" tagPrefix="ajaxToolkit"/>
</controls>
</pages>
cms9651
Member
174 Points
571 Posts
Developing ASP.NET 2.0 Applications using AJAX
Dec 15, 2012 08:32 AM|LINK
Developing ASP.NET 2.0 Applications using AJAX
Hello,
I can't load the site for some reason. i got Errors all the time.
How can i do it?
Any help?
Thank you.
The Error I get:
Server Error in '/' Application. Configuration Error Parser Error Message: Could not load file or assembly 'System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified. Source Error: <pages> <controls> <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/> <add namespace="AjaxControlToolkit" assembly="AjaxControlToolkit" tagPrefix="ajaxToolkit"/> </controls> </pages>My Web.Config:
<?xml version="1.0" encoding="utf-8"?> <configuration> <connectionStrings> <add name="ConnSqlServer" connectionString="Data Source=xxx;Initial Catalog=xxx;Persist Security Info=True;User ID=xxx;Password=xxx" providerName="System.Data.SqlClient" /> </connectionStrings> <system.web> <customErrors mode="Off" /> <compilation debug="true" /> <httpRuntime maxRequestLength="15360" /> <membership> <providers> <clear /> <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/" /> </providers> </membership> <profile> <providers> <clear /> <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/" /> </providers> </profile> <roleManager enabled="false"> <providers> <clear /> <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/" /> <add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/" /> </providers> </roleManager> <pages> <controls> <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/> <add namespace="AjaxControlToolkit" assembly="AjaxControlToolkit" tagPrefix="ajaxToolkit"/> </controls> </pages> </system.web> <system.webServer> <modules runAllManagedModulesForAllRequests="true" /> </system.webServer> </configuration>oned_gk
All-Star
31021 Points
6354 Posts
Re: Developing ASP.NET 2.0 Applications using AJAX
Dec 15, 2012 08:48 AM|LINK
Net 2.0 has no ajax yet. Use net 3.5 or try install this
http://www.microsoft.com/en-us/download/details.aspx?id=883
cms9651
Member
174 Points
571 Posts
Re: Developing ASP.NET 2.0 Applications using AJAX
Dec 15, 2012 08:53 AM|LINK
thank you for help.
I have installed the ASPAJAXExtSetup-msi but I don't have change in my application, the error is same...
oned_gk
All-Star
31021 Points
6354 Posts
Re: Developing ASP.NET 2.0 Applications using AJAX
Dec 16, 2012 11:22 AM|LINK