"Now i have posted the whole code please check it..And the exception raised at
else if (Password.Length < 6).
Please help me"
Why didn't you tell us that before? We don't need the code to tell you what the problem, is:
Password contains null - because you have not set a default value fro it.
In your constructor, add the line:
Password = "";
And your problem will go away!