Need to debug asp and javascript

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • gilgamesh

    Need to debug asp and javascript

    Hi there,
    What's a good tool to use for debugging ASP pages which contain bunch of
    javascripts?

    Thanks,
    Gilgamesh


  • Evertjan.

    #2
    Re: Need to debug asp and javascript

    gilgamesh wrote on 22 mei 2004 in microsoft.publi c.inetserver.as p.general:[color=blue]
    > What's a good tool to use for debugging ASP pages which contain bunch of
    > javascripts?[/color]

    Common sense.

    =============== ==============

    ASP can be written in javascript, do you mean that?.

    If you mean debugging clientside javascript [OT btw on this NG], try
    debugging view-source-ing the browsers resulting file.

    --
    Evertjan.
    The Netherlands.
    (Please change the x'es to dots in my emailaddress)

    Comment

    • gilgamesh

      #3
      Re: Need to debug asp and javascript

      I was referring to run time capability to stop the execution and view the
      contents of different variable within the code, without using the alert
      function. View-Source is probably not a good way to debug a page containing
      5000 lines of JavaScript. Or maybe it is?
      Thx.


      "Evertjan." <exjxw.hannivoo rt@interxnl.net > wrote in message
      news:Xns94F1847 1CB524eejj99@19 4.109.133.29...[color=blue]
      > gilgamesh wrote on 22 mei 2004 in microsoft.publi c.inetserver.as p.general:[color=green]
      > > What's a good tool to use for debugging ASP pages which contain bunch of
      > > javascripts?[/color]
      >
      > Common sense.
      >
      > =============== ==============
      >
      > ASP can be written in javascript, do you mean that?.
      >
      > If you mean debugging clientside javascript [OT btw on this NG], try
      > debugging view-source-ing the browsers resulting file.
      >
      > --
      > Evertjan.
      > The Netherlands.
      > (Please change the x'es to dots in my emailaddress)[/color]


      Comment

      • Evertjan.

        #4
        Re: Need to debug asp and javascript

        gilgamesh wrote on 24 mei 2004 in
        microsoft.publi c.inetserver.as p.general:[color=blue]
        > "Evertjan." <exjxw.hannivoo rt@interxnl.net > wrote in message[color=green]
        >> gilgamesh wrote on 22 mei 2004 in[color=darkred]
        >> > What's a good tool to use for debugging ASP pages which contain
        >> > bunch of javascripts?[/color]
        >>
        >> Common sense.
        >> =============== ==============
        >> ASP can be written in javascript, do you mean that?.[/color][/color]

        I got no answer here.
        [color=blue][color=green]
        >> If you mean debugging clientside javascript [OT btw on this NG], try
        >> debugging view-source-ing the browsers resulting file.
        >>[/color]
        > I was referring to run time capability to stop the execution and view
        > the contents of different variable within the code, without using the
        > alert function. View-Source is probably not a good way to debug a page
        > containing 5000 lines of JavaScript. Or maybe it is?[/color]

        [please do not toppost]

        "View-Source"?
        So you ARE referring to clientside script. As I said, then you are asking
        the wrong NG. In this NG j(ava)script is only on topic as serverside
        script.

        =============== ==

        btw, 5000 lines of script can only be debugged if you use strict modular
        behavour in your programming. Serverside scripting could be an eyeopener
        for you.

        "run time capability to stop the execution and view
        the contents of different variable within the code"

        A breakpoint by any other name?

        Easily build in serverside jscript-ASP:

        response.write( "<br>value a = " + a );
        response.end


        --
        Evertjan.
        The Netherlands.
        (Please change the x'es to dots in my emailaddress)

        Comment

        Working...