Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. ajax problem while using in asp.net

ajax problem while using in asp.net

Scheduled Pinned Locked Moved ASP.NET
helpjavascriptcsharpasp-netcom
10 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Offline
    M Offline
    Miss Maheshwari
    wrote on last edited by
    #1

    hello i am facing the below javascript error while using update panel and modalpopupextender.............please some one help

    Error: Sys.InvalidOperationException: 'DynamicServicePath' is not a property or an existing field.
    Source File: http://www.myrapidhealthcare.com/soft/Script/System.Web.Extensions/1.0.61025.0/MicrosoftAjax.debug.js
    Line: 2765</pre>

    i have stored MicrosoftAjax.debug.js file in Script folder

    E A 2 Replies Last reply
    0
    • M Miss Maheshwari

      hello i am facing the below javascript error while using update panel and modalpopupextender.............please some one help

      Error: Sys.InvalidOperationException: 'DynamicServicePath' is not a property or an existing field.
      Source File: http://www.myrapidhealthcare.com/soft/Script/System.Web.Extensions/1.0.61025.0/MicrosoftAjax.debug.js
      Line: 2765</pre>

      i have stored MicrosoftAjax.debug.js file in Script folder

      E Offline
      E Offline
      eyeseetee
      wrote on last edited by
      #2

      Can you post your code please

      M 1 Reply Last reply
      0
      • M Miss Maheshwari

        hello i am facing the below javascript error while using update panel and modalpopupextender.............please some one help

        Error: Sys.InvalidOperationException: 'DynamicServicePath' is not a property or an existing field.
        Source File: http://www.myrapidhealthcare.com/soft/Script/System.Web.Extensions/1.0.61025.0/MicrosoftAjax.debug.js
        Line: 2765</pre>

        i have stored MicrosoftAjax.debug.js file in Script folder

        A Offline
        A Offline
        Arindam Tewary
        wrote on last edited by
        #3

        Whats seems to me is, You have a function or method named DynamicServicePath which you have used like properties or fields. use "DynamicServicePath" with a pair of brackets like "DynamicServicePath()". Check it !!! NB: if you use "DynamicServicePath" then system says its a properties or fields, but DynamicServicePath() is interpreted as method.

        Thanks, Arindam D Tewary

        1 Reply Last reply
        0
        • E eyeseetee

          Can you post your code please

          M Offline
          M Offline
          Miss Maheshwari
          wrote on last edited by
          #4

          yeah sure

          <atlas:ScriptManager ID="scriptmanager" runat="server" ScriptPath="./Script" EnablePartialRendering="false">
          </atlas:ScriptManager>

          and at top of master page

          <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="atlas" %>

          plzzzz help how can i solve this error

          E 1 Reply Last reply
          0
          • M Miss Maheshwari

            yeah sure

            <atlas:ScriptManager ID="scriptmanager" runat="server" ScriptPath="./Script" EnablePartialRendering="false">
            </atlas:ScriptManager>

            and at top of master page

            <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="atlas" %>

            plzzzz help how can i solve this error

            E Offline
            E Offline
            eyeseetee
            wrote on last edited by
            #5

            Where is this in your code: DynamicServicePath

            M 1 Reply Last reply
            0
            • E eyeseetee

              Where is this in your code: DynamicServicePath

              M Offline
              M Offline
              Miss Maheshwari
              wrote on last edited by
              #6

              i dont have any code for DynamicServicePath....its not my function.....

              A 1 Reply Last reply
              0
              • M Miss Maheshwari

                i dont have any code for DynamicServicePath....its not my function.....

                A Offline
                A Offline
                Arindam Tewary
                wrote on last edited by
                #7

                Can you please copy the code in following file : http://www.myrapidhealthcare.com/soft/Script/System.Web.Extensions/1.0.61025.0/MicrosoftAjax.debug.js and tell us which is the code in line number 2765

                Thanks, Arindam D Tewary

                M 1 Reply Last reply
                0
                • A Arindam Tewary

                  Can you please copy the code in following file : http://www.myrapidhealthcare.com/soft/Script/System.Web.Extensions/1.0.61025.0/MicrosoftAjax.debug.js and tell us which is the code in line number 2765

                  Thanks, Arindam D Tewary

                  M Offline
                  M Offline
                  Miss Maheshwari
                  wrote on last edited by
                  #8

                  Arindam Tewary wrote:

                  code in line number 2765

                  is

                  if (!isObject && typeof(targetVal) === 'undefined') throw Error.invalidOperation(String.format(Sys.Res.propertyUndefined, name));

                  and from firefox i check that error is in the same line....all is working fine but modalpopup is not displaying...plzzz help me

                  A 1 Reply Last reply
                  0
                  • M Miss Maheshwari

                    Arindam Tewary wrote:

                    code in line number 2765

                    is

                    if (!isObject && typeof(targetVal) === 'undefined') throw Error.invalidOperation(String.format(Sys.Res.propertyUndefined, name));

                    and from firefox i check that error is in the same line....all is working fine but modalpopup is not displaying...plzzz help me

                    A Offline
                    A Offline
                    Arindam Tewary
                    wrote on last edited by
                    #9

                    Not sure if this is the actual problem but check the line

                    typeof(targetVal) === 'undefined'

                    it should have been

                    typeof(targetVal) == 'undefined'

                    Check the "===" operator .... a typo ....

                    Thanks, Arindam D Tewary

                    M 1 Reply Last reply
                    0
                    • A Arindam Tewary

                      Not sure if this is the actual problem but check the line

                      typeof(targetVal) === 'undefined'

                      it should have been

                      typeof(targetVal) == 'undefined'

                      Check the "===" operator .... a typo ....

                      Thanks, Arindam D Tewary

                      M Offline
                      M Offline
                      Miss Maheshwari
                      wrote on last edited by
                      #10

                      no this is not the problem......but i still didn't get the solution...please someone help

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • World
                      • Users
                      • Groups