Asp.Net
Error-GetTypeHashCode()': no suitable method found to override
Submitted by vaibhav on Sat, 01/09/2010 - 22:17GetTypeHashCode()': no suitable method found to override
How to remove this error. Please help
How to create a session variable in ASP.NET
Submitted by shantanu on Sat, 12/19/2009 - 13:38- Define an ASP.NET web site.
- Create two pages within the site. The first page will contain an ASP.NET Web Form that will post back to itself and then redirect to the second page.
Note: The reason this example uses two pages is to prove that a session variable is available to a second, third, fourth, etc. page in the web site. Request variables, which are an alternative to session variables, cannot be carried over from an ASP.NET Web Form on one page to a second page
Element "embed" is not Supported Error
Submitted by vaibhav on Thu, 11/19/2009 - 01:11Hi,
I embed a flash in my web page, but, it has an error said that
Validation: (XHTML 1.0 transitional) Element "embed" is not supported.
so what
I need to replace it? please help. The following is the code. Thanks.
<object width="600" height="400"> <param name="movie" value="http://www.youtube.com/v/xHN8zGn28BA&hl=en_US&fs=1&color1=0x2b405b&color2=0x6b8ab6&border=1"/> <param name="allowFullScreen" value="true"/> <param name="allowscriptaccess" value="always"/>
Regular Expression to Check Password Strength
Submitted by vaibhav on Mon, 11/02/2009 - 01:57Last few days I was trying hard to come up with a Regular Expression for checking password strength in JavaScript. For those who don't know what is a regular expression and How it can be used, Here is a wonderful link for you. Regular Expression can be a very handy code, for Matching two strings, Data Validation and even Syntax Highlighting.