Tag Archives: HTML

ASP.Net Default button and Master Pages

Last few days I was(am) busy with one pure ASP.Net application(why its pure because we are not using any 3rd party controls, ajax nothing. Everything is postbacking ). Today I got a weird bug from one of my QC team … Continue reading

Posted in .Net, .Net 3.0 / 3.5, ASP.Net | 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