Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Web;
|
---|
5 | using System.Web.UI;
|
---|
6 | using System.Web.UI.WebControls;
|
---|
7 | using System.Web.Security;
|
---|
8 |
|
---|
9 | public partial class LoginForm : System.Web.UI.Page
|
---|
10 | {
|
---|
11 | protected void Page_Load(object sender, EventArgs e)
|
---|
12 | {
|
---|
13 | }
|
---|
14 | protected void Login1_Authenticate(object sender, AuthenticateEventArgs e)
|
---|
15 | {
|
---|
16 | FormsAuthentication.RedirectFromLoginPage(Login1.UserName, false);
|
---|
17 | }
|
---|
18 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.