Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have searched the web but haven't found a clear answer as to its true purpose.

I think it has something to do with membership and WebSecurity attributes.

Can somebody shed light on its true purpose ?

share|improve this question
why the downvote ? – Win Coder Mar 15 at 15:17
first google result : "The InitializeSimpleMembership Attribute ensures that before any membership (login/register) related functionality is run, that the membership database has been created." – jbl Mar 15 at 15:40

closed as not constructive by AliRıza Adıyahşi, Soner Gönül, Mario, sclv, hohner Mar 15 at 16:46

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

up vote 1 down vote accepted

From Rick_Anderson's blog post InitializeSimpleMembership Attribute and SimpleMembership Exceptions

The InitializeSimpleMembership Attribute ensures that before any membership (login/register) related functionality is run, that the membership database has been created. If the database is not yet created, the code will automatically create one. If the simple membership initialization fails, the Web Application can continue to run requests that don’t require membership.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.