Prizes & Awards
My Profile
Active Members
TodayLast 7 Days
more...
|
New Feature: Community Sites:
Create your own .NET community website and start earning from Google AdSense !
It's Free !
|
Sys is undefined
Posted Date:
12 Oct 2008
Total Responses:
3
|
Posted By: Pradeep Member Level: Bronze Points: 1
|
Hi All,
I am trying to implement AJAX in my website. I installed the 3.5 libraries to the existing 2.0 and I am using VS 2005. I am getting this darn "Sys is undefined" when I am trying to use a always visible control.
This is how my web.config looks.
<?xml version="1.0"?> <configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0"> <appSettings/> <!-- CONNECTION STRING --> <connectionStrings> <add name="MyConnection" connectionString="Server=KEANE-0C8041649\SQLEXPRESS;Database=keane;Trusted_Connection=True;"/> <add name="keaneConnectionString" connectionString="Data Source=KEANE-0C8041649\SQLEXPRESS;Initial Catalog=keane;Integrated Security=True" providerName="System.Data.SqlClient"/> </connectionStrings> <system.web> <!-- COMPILATION --> <compilation debug="true"> <assemblies> <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Data.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/></assemblies></compilation>
<!-- AUTHENTICATION --> <authentication mode="Forms"> <forms loginUrl="Default.aspx"/> </authentication> <!--<authorization> <deny users="?"/> </authorization> --> <!-- SESSION VARIABLE --> <sessionState mode="InProc" cookieless="true" timeout="20"/> <!-- MEMBERSHIP --> <membership defaultProvider="CustomizedProvider"> <providers> <add name="CustomizedProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="MyConnection" applicationName="MyProject" requiresQuestionAndAnswer="true" requiresUniqueEmail="false" passwordFormat="Hashed" passwordAttemptWindow="10" minRequiredPasswordLength="5" minRequiredNonalphanumericCharacters="0"/> </providers> </membership> <!-- ROLE MANAGER --> <roleManager enabled="true" defaultProvider="CustomizedRoleProvider"> <providers> <add name="CustomizedRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="MyConnection"/> </providers> </roleManager> </system.web> </configuration>
|
Responses
|
| Author: vipul 12 Oct 2008 | Member Level: Diamond | Rating: Points: 2 | hi, you used 3.5 and vs2005 this is not possible so make version same.
vipul, http://dongavipul.blogspot.com
| | Author: Pradeep 12 Oct 2008 | Member Level: Bronze | Rating: Points: 2 | Hi Vipul, Thanks for your response.
What should be the version for VS 2005? will 3.0 suffice ?
| | Author: Pradeep 14 Oct 2008 | Member Level: Bronze | Rating: Points: 6 | I started this thread. After digging in for so many days, My Web.config was missing the following sections. I included the following in the web config and it worked.
<pages> <controls> <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add namespace="AjaxControlToolkit" assembly="AjaxControlToolkit" tagPrefix="ajaxToolkit"/> </controls> </pages> <httpHandlers> <remove verb="*" path="*.asmx"/> <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false"/> </httpHandlers> <httpModules> <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> </httpModules>
<runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/> <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35"/> <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/> </dependentAssembly> </assemblyBinding> </runtime>
Thanks for all your support and happy programming
|
| Post Reply |
|
|
|
You must Sign In to post a response.
|
|
|
|