primitive http server
-
hello, i'm dealing with a primitive http server that doesn't support client-side javascript. my question is why does it have to support it? i am using internet explorer browser, the browser does support js. why does the server have to support client-side javascript? thank you,
-
hello, i'm dealing with a primitive http server that doesn't support client-side javascript. my question is why does it have to support it? i am using internet explorer browser, the browser does support js. why does the server have to support client-side javascript? thank you,
Makes no sense. You mean your web server dont process client scripts. Javascripts are totally processed by the client. The thing that you have to do, is just to download the js file to the client. Check the extensions associated with the web server. Also if possible, let us know which server you are using?
Abhishek Sur My Latest Articles Working with Excel using MDAC
Basics on LINQ and Lambda Expressions
Create .NET Templates -
hello, i'm dealing with a primitive http server that doesn't support client-side javascript. my question is why does it have to support it? i am using internet explorer browser, the browser does support js. why does the server have to support client-side javascript? thank you,
as long as your pages have been coded correctly and the sever is meant to send js to files to the client it should work. Servers don't really "support" javascript. they send the files. and if they are not doing that then it's probably a security setting or server-side rule for javascript docs. Javascript runs entirely client side. it can make requests for pages (http request), but that's just about it in terms of client-server interaction. Like the other poster said; What server are you using???
-
hello, i'm dealing with a primitive http server that doesn't support client-side javascript. my question is why does it have to support it? i am using internet explorer browser, the browser does support js. why does the server have to support client-side javascript? thank you,
maybe the web server only allow to download certain document. in particular, maybe it DOESN'T allow to download .js file?
A train station is where the train stops. A bus station is where the bus stops. On my desk, I have a work station.... _________________________________________________________ My programs never have bugs, they just develop random features.
-
Makes no sense. You mean your web server dont process client scripts. Javascripts are totally processed by the client. The thing that you have to do, is just to download the js file to the client. Check the extensions associated with the web server. Also if possible, let us know which server you are using?
Abhishek Sur My Latest Articles Working with Excel using MDAC
Basics on LINQ and Lambda Expressions
Create .NET Templateshello, thanks for answering. you realy helped me. it was my problem and i thought it is the server's. what about css? is it the same?! the server has to support it? thanks again,
-
hello, thanks for answering. you realy helped me. it was my problem and i thought it is the server's. what about css? is it the same?! the server has to support it? thanks again,
Yes .. Same buddy.. Just see if the extension css is blocked to the server or not. If it is not, css will load just like the JS.
Abhishek Sur My Latest Articles Working with Excel using MDAC
Basics on LINQ and Lambda Expressions
Create .NET Templates -
hello, i'm dealing with a primitive http server that doesn't support client-side javascript. my question is why does it have to support it? i am using internet explorer browser, the browser does support js. why does the server have to support client-side javascript? thank you,