I am new to JavaScript. How to use JavaScript to save results to a MS DB? example: Can I use a JavaScript to know a visitor's browser type and save the browser type into my MS DB? How to do it? Thank you.
AFAIK you can't do that with JavaScript alone, because it's running ClientSide and for the functionality you want to have, you would need to combine it with some other ServerSide Script Language like PHP and use Ajax. But, if it's only for logging visitors browser type, etc., why not use PHP straight, you don't need JS for that at all...