Browse by Tags
All Tags »
HTML (
RSS)
Using regular expressions in ASP.Net is even easier than implementing them in plain html and yet few developers are using them. In this article I will show two ways of implementing Regular Expressions, using a Regular Expression Validator and using plain Javascript in ASP.Net. Both examples are very very simple. We will validate a telephone number and an email address. How to Implement Regular Expressions in ASP.Net with Validator Controls. 1) Create a new a page in a web application project in visual...
http://www.w3.org/TR/REC-DOM-Level-1/ecma-script-language-binding.html The link above provides the complete ECMA Script binding for the Level 1 Document Object Model definitions. The page is broken up into HTML and Core DOM sections. For the HTML section will be the most useful, as it contains all the HTML controls and their properties. Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
We are currently updating all our HTML and JAVAScript to conform to W3C standards and one thing has had me baffled for a while. We dynamically generate an HTML Table and thus dynamically add onclick events via javascripting. now, in IE to remove a row from the HTML table you just say, table.removeNode(NodeID) BUT in mozilla table.deleteRow(NodeID.rowIndex) Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!