While designing grids and related styles, I always found the need to bind some dummy data to the grid to see how the grid looks. So, rather than making a database call to get a really organized table, I decided to get one of my own. The following method...
Include the following code in the <head> tag, or in the common.js file in your website(hoping that you call it in the master page or the relevant form). function disableEnterKey() { if ( window .event.keyCode == 13) window .event.keyCode = 0; }...