Tagged Questions

0
votes
3answers
15 views

adding inputs to html form, using javascript

Hello. I have an html form that I would like to add inputs fields to using javascript. Originally I had the input fields by themselves underneath the 'body', and the following was able to add the …
0
votes
3answers
29 views

how to access master page control in child page .aspx page(in javscript)

hi in my master page.cs i am assiging an value to hiddenfield hfSession="abc"; in my content page(default.aspx) i need to access this value in my javscript <script type="text/javascript" …
0
votes
4answers
16 views

Get Browser verion of IE using Javascript

I am using the following code to get the version of IE in a system. var browser = navigator.appName; var b_version = navigator.appVersion; var version = parseFloat(b_version); …
0
votes
2answers
26 views

Lock a button while an AJAX call.

On click of a button, I am saving the record to the database. I don't want to refresh the page, it must be handled through AJAX. I have the code for AJAX, I just want to know how to enable/disable …
0
votes
3answers
35 views

Javascript date to C# via Ajax

I have javascript date object which gives me a date string in this format, "Wed Dec 16 00:00:00 UTC-0400 2009". I pass this via Ajax to the server (ASP.NET c#) How can I convert, "Wed Dec 16 …