Membership::FindUsersByEmail Method (String^)

 

Gets a collection of membership users where the e-mail address contains the specified e-mail address to match.

Namespace:   System.Web.Security
Assembly:  System.Web (in System.Web.dll)

public:
static MembershipUserCollection^ FindUsersByEmail(
	String^ emailToMatch
)

Parameters

emailToMatch
Type: System::String^

The e-mail address to search for.

Return Value

Type: System.Web.Security::MembershipUserCollection^

A MembershipUserCollection that contains all users that match the emailToMatch parameter.

Leading and trailing spaces are trimmed from the emailToMatch parameter value.

FindUsersByEmail returns a list of membership users where the e-mail address matches the supplied emailToMatch for the configured applicationName.

The SqlMembershipProvider performs its search using a LIKE clause against the emailToMatch parameter. Any wildcards that are supported by SQL Server in LIKE clauses can be used in the emailToMatch parameter value.

The following code example uses the FindUsersByEmail method to retrieve membership user information from the membership database based on user input and displays the results in pages of data.

System_CAPS_security Security Note

This example contains a text box that accepts user input, which is a potential security threat. By default, ASP.NET Web pages validate that user input does not include script or HTML elements. For more information, see Script Exploits Overview.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: