<%@ page language="VB"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Sub Createuserwizard1_LoggingIn(ByVal sender As Object, ByVal e As LoginCancelEventArgs)
' Make sure the UserName field is lower case before logging in.
Createuserwizard1.UserName.ToLower()
End Sub
</script>
<html >
<head runat="server">
<title>CreateUserWizard.LogginIn sample</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:createuserwizard id="Createuserwizard1" runat="server"
OnCreatingUser="Createuserwizard1_LoggingIn">
</asp:createuserwizard>
</div>
</form>
</body>
</html>