Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/WebSites/OKB/LoginForm.aspx.cs @ 4479

Last change on this file since 4479 was 4476, checked in by cfleisch, 14 years ago

Create repository (#1198)

File size: 477 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Web;
5using System.Web.UI;
6using System.Web.UI.WebControls;
7using System.Web.Security;
8
9public 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.