Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

constructor w/ parameters for custom membership provider

Status
Not open for further replies.
Oct 16, 2008
1
US
Is there any way to have the Membership subsystem use my custom membership provider constructor w/ parameters.

Result:
Code:
public CustomMembershipProvider(){
     throw new NotImplementedException();
}

public CustomMembershipProvider(string someString){
     this.someString = someString;
}

Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top