15 lines
303 B
C#
15 lines
303 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace FineUIPro.Web
|
|||
|
|
{
|
|||
|
|
public partial class LogOff : System.Web.UI.Page
|
|||
|
|
{
|
|||
|
|
protected void Page_Load(object sender, EventArgs e)
|
|||
|
|
{
|
|||
|
|
if (!IsPostBack)
|
|||
|
|
{
|
|||
|
|
HyperLink1.NavigateUrl = "Login.aspx";
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|