redcap

Stories submitted by redcap

Ways to set short cut keys for controls on a windows forms application(nirandas.com)

submitted by redcapredcap(420) 3 years, 9 months ago

Setting short cut keys for menus, buttons etc are very easy in the .net framework, you just have to set the ShortCut property for menu items. And for buttons etc, you can indicate the access key to be used for the control by putting a & sign just before the letter which should be used as the access key like, setting the text of the button control to “&Open” would set the shortcut key “Alt+O” for the button. However, if you want use other key combinations for the shortcut keys like Ctrl+a, Ctrl+F10 etc, for any controls other than menus or if you want to provide shortcut keys for textbox, you can’t simply set any property or use the & sign to indicate it. read more...

add a comment |category: |Views: 78

tags: another

asp.net mvc: Is that username available?(nirandas.com)

submitted by redcapredcap(420) 3 years, 9 months ago

Here is what I tried to implement with jquery on asp.net mvc. I decided to add the ability to automatically check whether the username given by the user on the registration page is already taken or is available. read more...

add a comment |category: |Views: 10

tags: another

Best possible url format in asp.net mvc on IIS6(nirandas.com)

submitted by redcapredcap(420) 3 years, 9 months ago

A URL format for asp.net mvc which will work in iis 6 also read more...

add a comment |category: |Views: 38

tags: another

Useful extension methods for string class specially in asp.net(nirandas.com)

submitted by redcapredcap(420) 3 years, 9 months ago

Some useful extension methods which will be specially useful in asp.net like string.FromLeft, string.FromRight, string.MakeSEOFriendlyURL etc. read more...

add a comment |category: |Views: 18

tags: another

asp.net pages and proper titles(nirandas.com)

submitted by redcapredcap(420) 3 years, 9 months ago

A method for properly managing page titles in asp.net application read more...

add a comment |category: |Views: 7

tags: another