Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 187679
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T15:51:58+00:00 2026-05-11T15:51:58+00:00

When i am running the application,i got an error as follows: Microsoft JScript runtime

  • 0

When i am running the application,i got an error as follows:

Microsoft JScript runtime error:Sys.ArgumentTypeException:Object of type ‘Sys._Application’ cannot be converted to type ‘Sys._Application’.Parameter name:instance

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T15:51:59+00:00Added an answer on May 11, 2026 at 3:51 pm

    This error can happen if your web.config is not properly configured to use Microsoft’s ASP.NET Ajax.

    If you have VS2008, this settings are added automatically. In VS2005, if your ASP.NET project does not start out as Ajax, you need to add the settings manually.

    Here’s an example:

    <configuration>    <configSections>      <sectionGroup name='system.web.extensions' type='System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'>        <sectionGroup name='scripting' type='System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'>          <section name='scriptResourceHandler' type='System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' requirePermission='false' allowDefinition='MachineToApplication'/>          <sectionGroup name='webServices' type='System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'>            <section name='jsonSerialization' type='System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' requirePermission='false' allowDefinition='Everywhere'/>            <section name='profileService' type='System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' requirePermission='false' allowDefinition='MachineToApplication'/>            <section name='authenticationService' type='System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' requirePermission='false' allowDefinition='MachineToApplication'/>          </sectionGroup>        </sectionGroup>      </sectionGroup>    </configSections>    <system.web>      <pages>        <controls>          <add tagPrefix='asp' namespace='System.Web.UI' assembly='System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'/>        </controls>      </pages>      <compilation debug='true'>        <assemblies>          <add assembly='System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'/>          <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'/>        </assemblies>      </compilation>      <httpHandlers>        <remove verb='*' path='*.asmx'/>        <add verb='*' path='*.asmx' validate='false' type='System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'/>        <add verb='*' path='*_AppService.axd' validate='false' type='System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'/>        <add verb='GET,HEAD' path='ScriptResource.axd' type='System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' validate='false'/>      </httpHandlers>      <httpModules>        <add name='ScriptModule' type='System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'/>      </httpModules>    </system.web>    <system.web.extensions>      <scripting>        <webServices>          <!-- Uncomment this line to customize maxJsonLength and add a custom converter -->          <!--            <jsonSerialization maxJsonLength='500'>              <converters>                <add name='ConvertMe' type='Acme.SubAcme.ConvertMeTypeConverter'/>              </converters>            </jsonSerialization>          -->          <!-- Uncomment this line to enable the authentication service. Include requireSSL='true' if appropriate. -->          <!--            <authenticationService enabled='true' requireSSL = 'true|false'/>          -->          <!-- Uncomment these lines to enable the profile service. To allow profile properties to be retrieved               and modified in ASP.NET AJAX applications, you need to add each property name to the readAccessProperties and               writeAccessProperties attributes. -->          <!--            <profileService enabled='true'              readAccessProperties='propertyname1,propertyname2'              writeAccessProperties='propertyname1,propertyname2' />          -->        </webServices>        <!--          <scriptResourceHandler enableCompression='true' enableCaching='true' />        -->      </scripting>    </system.web.extensions>    <system.webServer>      <validation validateIntegratedModeConfiguration='false'/>      <modules>        <add name='ScriptModule' preCondition='integratedMode' type='System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'/>      </modules>      <handlers>        <remove name='WebServiceHandlerFactory-Integrated'/>        <add name='ScriptHandlerFactory' verb='*' path='*.asmx' preCondition='integratedMode' type='System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'/>        <add name='ScriptHandlerFactoryAppServices' verb='*' path='*_AppService.axd' preCondition='integratedMode' type='System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'/>        <add name='ScriptResource' preCondition='integratedMode' verb='GET,HEAD' path='ScriptResource.axd' type='System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'/>      </handlers>    </system.webServer>  </configuration> 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 183k
  • Answers 183k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Yes, this is very do-able. There are 2 steps to… May 12, 2026 at 4:38 pm
  • Editorial Team
    Editorial Team added an answer You should be using list_entry(p, struct task_struct, sibling); Not list_entry(p,… May 12, 2026 at 4:38 pm
  • Editorial Team
    Editorial Team added an answer UTF-8 can store any Unicode character. If your encoding is… May 12, 2026 at 4:38 pm

Related Questions

This will be a long one but I hope you could bear with me.
I've got this in my web.config and it's being hosted by the DiscountASP.net ISP
I need some mind reading here, since I am trying to do what I
On Linux under X11 and using GTK+ you have something called Main Loop. Once

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.