Possible Duplicate:
WebMatrix WebSecurity PasswordSalt
is there a way to have simpleMembershipProvider use the salt?
when I create my mvc4 web project and set the default connection to sqlexpress, then register, my users do not have a password salt

I would like for it to be as secure as it can without too much trouble.
The PasswordSalt column is unused, but salting is used when creating the hashed password that is stored in the Password field. You can see this if you look at the source code for the SimpleMembershipProvider: http://aspnetwebstack.codeplex.com/SourceControl/changeset/view/3a669e7112e7#src%2fWebMatrix.WebData%2fSimpleMembershipProvider.cs
Check the CreateUserAndAccount method. It uses the Crypto.HashPassword method:
Basically to address your concerns, it’s as secure as it needs to be without you having to go to any additional trouble.