Monday, October 6, 2008

Byepassing Password Criteria from ASP.NET Membership

If you ever seen an annoying comment like 'Password must me 7 characters long, and containg atleast 1 non-alphanumeric character. You can remove by making some slight changes in the web.config file. Below sample, removes the Q&A and E-Mail from Create-User Wizard. Also, asks for password of 4 characters long, and that too without any non-aplhanumeric character.

<authentication mode="Forms" />
   <membership defaultProvider="MyProvider">
      <providers>
      <add name="MyProvider" type="System.Web.Security.SqlMembershipProvider"
connectionStringName="LocalSqlServer" requiresUniqueEmail="false"
requiresQuestionAndAnswer="true"
minRequiredPasswordLength="4" minRequiredNonalphanumericCharacters="0" />
      </providers>
   </membership>

Free movie streaming

Recently, I find some cool links for streaming movies. If u've installed Real Player 11, then you can save them easily to your PC after streaming.

http://ashmagic.com

http://artkerala.com

http://www.allhindi.tv/

http://hindimoviesonline.net/

http://hindistick.com

Saturday, October 4, 2008

Running CheckDisk in bat file

For a long time, I's searching for a solution to run check-disk, using a bat file.
The real problem is that when i try to run the check-disk on C: drive, a yes/no question is always asked. I actually dont know know how to by-pass that in the bat file.
However, I got the solution, as well and as follows:

echo y chkdsk C: /f /r

Thursday, October 2, 2008

RegisterClientScriptBlock and RegisterStartupScipt

The main difference between RegisterClient ScriptBlock and RegisterStartupScipt is as follows :

RegisterClientScriptBlock : Registers the script, after the <form> tag opening, but before any page-controls are rendered.

RegisterStartupScipt : Registers the script after all the page-controls are rendered, but before the closing <form> tag.

Wednesday, October 1, 2008

WIndows Live Wave 3 download link




Redmondians have released its app-kit - Windows Live Wave 3. The reviews are positive.

Here is the direct download link, Windows Live Wave 3 (130 MB)


 
Best viewed in Internet Explorer 8.