Ask a Question related to ASP.NET General, Design and Development.
-
Jerry #1
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
-
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... -
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. ... -
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... -
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... -
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 =... -
Alvin Bruney #2
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
-
Jerry #3
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...from> You don't 'have to' use javascript in the page. you can always use
> attributes and code behind to emit javascript, or stream the javascriptjavascript> 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> 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
-
Kevin Spencer #4
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...javascript> 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...> from> > 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> > the server. with that said, it's often easier just to write thebut> javascript> > in the page itself. Clientside stuff will always be rendered with> > or whatever the scripting language is. that's the nature of the beast>> > .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



Reply With Quote

