Usable Asp.Net

Little things that make Asp.Net more usable

Browse by Tags

All Tags » client side (RSS)
Sorry, but there are no more tags available to filter with.
Data Entry: Use Enter as Tab
A simple javascript will make your Enter key work as Tab. It is useful in large tabular forms. function enterToTab(){ if (event.keyCode==13) event.keyCode=9; } <input type="text" onkeydown="enterToTab()"> Note using onkeydown...
Posted: Jul 30 2007, 03:25 PM by egoldin | with 4 comment(s)
Filed under:
Detect Vista on client machine
If you need to know if client's browser runs on a Vista machine, run javascript navigator.userAgent or navigator.appVersion and search the returning string for "Windows NT 6.0". If it is there, you are on Vista.
Posted: May 21 2007, 07:15 AM by egoldin | with 2 comment(s)
Filed under:
Silverlight is coming: c# calls from javascript and more...
Soon you won't need to go to the server to treat your client-site javascript with some c# calls. Watch this technology, it looks promising: Silverlight . Scott Guthrie: Silverlight opens up a ton of opportunities to build significantly richer client...
Posted: May 08 2007, 10:28 AM by egoldin | with no comments
Filed under: