Posts

Showing posts from March, 2010

AjaxControlToolKit : Could not find any resources appropriate for the specified culture or the neutral culture.

Error Description Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "AjaxControlToolkit.Properties.Resources.resources" was correctly embedded or linked into assembly "AjaxControlToolkit" at compile time, or that all the satellite assemblies required are loadable and fully signed Solution : Add the Toolscript Manager

Regular expression for password

Regular Expresssion for a password validation is   ^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{4,8}$ The description for the above expression is  Password matching expression. Password must be at least 4 characters, no more than 8 characters, and must include at least one upper case letter, one lower case letter, and one numeric digit. Lots of regular expresssion available at http://regexlib.com/DisplayPatterns.aspx