Prev: SproutCore--over 20000 lines of new code!
Next: Usefulness of documentreadystatechange (was: Why won't my (j)query work?)
From: Evertjan. on 1 Jan 2010 15:26 Thomas 'PointedEars' Lahn wrote on 01 jan 2010 in comp.lang.javascript: > AP wrote: >> Is it advisable to build a business website (with users entering and >> retrieving private info and monetary Paypal-type transactions and the >> like) using JavaScript (in view of the fact that the code is totally >> visible to users) ? > > The source code is only "totally visible to users" if the programming > language is used client-side. Anyhow, you do want to validate financial > transactions server-side, regardless of the programming language. And what is more, there is no reason not to use Javascript serverside. If you enjoy Javascript, serverside Javascript [I do it on the ASP platform] is a good choice. Do not use Javascript or any other script clientside for security critical applications. -- Evertjan. The Netherlands. (Please change the x'es to dots in my emailaddress)
From: AP on 1 Jan 2010 20:30 On Jan 2, 9:26 am, "Evertjan." <exjxw.hannivo...(a)interxnl.net> wrote: > > And what is more, > there is no reason not to use Javascript serverside. > > If you enjoy Javascript, serverside Javascript > [I do it on the ASP platform] is a good choice. > > Do not use Javascript or any other script clientside > for security critical applications. > Thanks very much for your suggestions. I have basic knowledge of JavaScript (client-side) - would be grateful if you could suggest where I could learn server-side JavaScript meant for beginners (can't find any for some reason). Does server-side JavaScript require a special software to be installed on the server and if so, do most web servers have it ?
From: David Mark on 1 Jan 2010 20:33 On Jan 1, 8:30 pm, AP <tian...(a)gmail.com> wrote: > On Jan 2, 9:26 am, "Evertjan." <exjxw.hannivo...(a)interxnl.net> wrote: > > > > > And what is more, > > there is no reason not to use Javascript serverside. > > > If you enjoy Javascript, serverside Javascript > > [I do it on the ASP platform] is a good choice. > > > Do not use Javascript or any other script clientside > > for security critical applications. > > Thanks very much for your suggestions. I have basic knowledge of > JavaScript (client-side) - would be grateful if you could suggest > where I could learn server-side JavaScript meant for beginners (can't > find any for some reason). Does server-side JavaScript require a > special software to be installed on the server and if so, do most web > servers have it ? I use "classic" ASP with JScript for some projects. Start with MSDN...
From: AP on 3 Jan 2010 00:03 On Jan 2, 2:33 pm, David Mark <dmark.cins...(a)gmail.com> wrote: > On Jan 1, 8:30 pm, AP <tian...(a)gmail.com> wrote: > > > > On Jan 2, 9:26 am, "Evertjan." <exjxw.hannivo...(a)interxnl.net> wrote: > > > > And what is more, > > > there is no reason not to use Javascript serverside. > > > I use "classic" ASP with JScript for some projects. Start with MSDN... > Is this the only way server-side JavaScript can be implemented ? I've heard classic ASP is slowly phasing out, but I've also heard that server-side JavaScript is slowly making an appearance, hence my question as to whether if there's another way of doing server-side JavaScript. Please bear with my general ignorance in this area as I've little experience in web programming. Thanks.
From: David Mark on 3 Jan 2010 01:10
On Jan 3, 12:03 am, AP <tian...(a)gmail.com> wrote: > On Jan 2, 2:33 pm, David Mark <dmark.cins...(a)gmail.com> wrote: > > > On Jan 1, 8:30 pm, AP <tian...(a)gmail.com> wrote: > > > > On Jan 2, 9:26 am, "Evertjan." <exjxw.hannivo...(a)interxnl.net> wrote: > > > > > And what is more, > > > > there is no reason not to use Javascript serverside. > > > I use "classic" ASP with JScript for some projects. Start with MSDN.... > > Is this the only way server-side JavaScript can be implemented ? I've > heard classic ASP is slowly phasing out, but I've also heard that Well, it's been slowly phasing out for almost a decade. I'm sure you'll be able to find a host for years to come. > server-side JavaScript is slowly making an appearance, hence my > question as to whether if there's another way of doing server-side > JavaScript. I'm sure you can do it with .NET, but that is definitely on the way out as it's been a nearly unqualified disaster. In short, MS tried to abstract something they never really understood (the Web). Sounds familiar. :) > Please bear with my general ignorance in this area as I've > little experience in web programming. Thanks. Ignorance is hardly a crime. Beat the hell out of foolhardiness. ;) |