views:

128

answers:

1

Hello,


Q1

A) Is there a way to create membership database ( using aspnet_regsql tool ) where each user could have several email addresses specified ( instead of just one ) during registration process?


B) Is there also a way to somehow "inform" Security wizard in WAT to include new input fields ( where additional email addresses would be entered ) when creating new user account?


thanx

+1  A: 

I think Profiles will solve your problem. Here's a blog post from ScottGu on implementing membership with profiles.

Jeremy
I assume we can't tell aspnet_regsql tool to create additional columns for additional email addresses?
SourceC
That is true but using profile fields you don't have to.
Jeremy
thank you very much
SourceC