Tag Archives: Javascript

A Simple Chat script using ASP.Net C#

Few days back one of my colleague was looking for a simple chat script in ASP.Net, but he can’t found one. Almost all of the chat scripts were in ASP and he want to do it for an internal site. … Continue reading

Posted in .Net, .Net 3.0 / 3.5, ASP.Net, Javascript | Tagged , , , , , , , , , | 4 Comments

Programmatically submitting a FORM with Javascript

In asp.net, it allows to create only one <FORM> tag. If you put more than one <FORM> tag it will generate an error. But some times we require multiple form tags and submit buttons. Because <FORM> tag in asp.net always … Continue reading

Posted in .Net, Javascript | Tagged , , | Leave a comment

Clearing combobox items using javascript

I already posted some code to add and read values from dropdown lists using Javascript. Sometimes we require to reset the items to zero or need to clear the items in the dropdown list. Here is a simple code snippet … Continue reading

Posted in Javascript | Tagged , , , | Leave a comment

CSS list-style-image Property

If you are using list tags, like OL, LI, UL etc, there is limited control on the UI, like it will render only like 1, disc etc. Sometimes the we require bulletedlists to be look nice. Here is simple way … Continue reading

Posted in Javascript | Tagged , , | Leave a comment

Detect browser name and version

If your writing cross-browser web applications, it is nessary to detcect Browser name and version. Because some of the javascript code like forms[] and controls[] will not work in all browsers, and document.getElementById() will not work in old version browsers. … Continue reading

Posted in Javascript | Tagged , | Leave a comment