Do you need to use Java script in ASP .Net?

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Do you need to use Java script in ASP .Net?

    Hi, Experts,
    With the great functionalities in ASP .net, do we still need to use
    JavaScript? Thanks

    Jerry



    Jerry Guest

  2. Similar Questions and Discussions

    1. help with java script
      Hi, can someone please help me. on my page http://www.watersportsproducts.com/store2/test.htm - I can not get the java script to return the right...
    2. CF Grid / Java Script / Action Script
      Hi, Does anyone know of a good reference for the attributes CFgrid exposes in a flash form? eg. I would like to select the first row on load. ...
    3. Java popup within a php script???
      Hey all, I want to add a Java Alert to ask the user if they are sure they want to Delete some data from the DB. Has anyone done this. I can get...
    4. Mac and Java Script?
      Hello. I have an asp page with java script that calls a clicked event on some radio buttons. It works as expected except for Mac users. They are...
    5. Please Help With Java Script and ASPX
      How do I retrieve a value from an ASP.NET Textbox in Java Script. The following code returns Null, What am I doing wrong? var AName =...
  3. #2

    Default Re: Do you need to use Java script in ASP .Net?

    You don't 'have to' use javascript in the page. you can always use
    attributes and code behind to emit javascript, or stream the javascript from
    the server. with that said, it's often easier just to write the javascript
    in the page itself. Clientside stuff will always be rendered with javascript
    or whatever the scripting language is. that's the nature of the beast but
    ..net has removed a lot of the hassle.

    "Jerry" <JGAO2183@rogers.com> wrote in message
    news:xn0Oa.75689$x4o.39462@news04.bloor.is.net.cab le.rogers.com...
    > Hi, Experts,
    > With the great functionalities in ASP .net, do we still need to use
    > JavaScript? Thanks
    >
    > Jerry
    >
    >
    >

    Alvin Bruney Guest

  4. #3

    Default Re: Do you need to use Java script in ASP .Net?

    Steve and Alvin, thank you for your reponses. Then I will embed the
    Javascripts in web forms when necessary. Thanks again.


    Jerry


    "Alvin Bruney" <vapordan_spam_me_not@hotmail_no_spamhotmail.com > wrote in
    message news:uLjBn$ARDHA.3192@TK2MSFTNGP10.phx.gbl...
    > You don't 'have to' use javascript in the page. you can always use
    > attributes and code behind to emit javascript, or stream the javascript
    from
    > the server. with that said, it's often easier just to write the javascript
    > in the page itself. Clientside stuff will always be rendered with
    javascript
    > or whatever the scripting language is. that's the nature of the beast but
    > .net has removed a lot of the hassle.
    >
    > "Jerry" <JGAO2183@rogers.com> wrote in message
    > news:xn0Oa.75689$x4o.39462@news04.bloor.is.net.cab le.rogers.com...
    > > Hi, Experts,
    > > With the great functionalities in ASP .net, do we still need to use
    > > JavaScript? Thanks
    > >
    > > Jerry
    > >
    > >
    > >
    >
    >

    Jerry Guest

  5. #4

    Default Re: Do you need to use Java script in ASP .Net?

    Another point: An ASP.Net is an application with both server-side and
    client-side functionality. Good development technique dictates that one
    should make the best possible use of resources both on the client and on the
    server. Anything you can put on the client to process is going to save you a
    bunch of resources on the server, as the client is only processing for
    itself, while the server is processing for ALL clients, which can be quite a
    few if your web site has any traffic at all. JavaScript is a vital aspect of
    ASP.Net technology (how else could you use ViewState, for one?). Disabling
    it, or trying to do without it, is counter-productive.

    HTH,

    Kevin Spencer
    Microsoft FrontPage MVP
    Internet Developer
    [url]http://www.takempis.com[/url]
    Some things just happen.
    Everything else occurs.

    "Jerry" <JGAO2183@rogers.com> wrote in message
    news:Ez4Oa.76616$x4o.6988@news04.bloor.is.net.cabl e.rogers.com...
    > Steve and Alvin, thank you for your reponses. Then I will embed the
    > Javascripts in web forms when necessary. Thanks again.
    >
    >
    > Jerry
    >
    >
    > "Alvin Bruney" <vapordan_spam_me_not@hotmail_no_spamhotmail.com > wrote in
    > message news:uLjBn$ARDHA.3192@TK2MSFTNGP10.phx.gbl...
    > > You don't 'have to' use javascript in the page. you can always use
    > > attributes and code behind to emit javascript, or stream the javascript
    > from
    > > the server. with that said, it's often easier just to write the
    javascript
    > > in the page itself. Clientside stuff will always be rendered with
    > javascript
    > > or whatever the scripting language is. that's the nature of the beast
    but
    > > .net has removed a lot of the hassle.
    > >
    > > "Jerry" <JGAO2183@rogers.com> wrote in message
    > > news:xn0Oa.75689$x4o.39462@news04.bloor.is.net.cab le.rogers.com...
    > > > Hi, Experts,
    > > > With the great functionalities in ASP .net, do we still need to use
    > > > JavaScript? Thanks
    > > >
    > > > Jerry
    > > >
    > > >
    > > >
    > >
    > >
    >
    >

    Kevin Spencer Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139