You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
502 B

<%@ Page Language="C#" Inherits="LevinFox.AddTopic" Src="src/AddTopic.aspx.cs" Debug="true" validateRequest=false%>
<%@ Register TagPrefix="ftb" Namespace="FreeTextBoxControls" Assembly="FreeTextBox" %>
<script runat="server">
void Page_Load(object sender,EventArgs e)
{
if(Session["login"] != "est_user" && Session["login"] != "manager")
{
Response.Redirect("Login.aspx");
}
lbUsername.Text = Session["EstUsr"].ToString();
//tbContent.AutoConfigure = AutoConfigure.EnableAll;
}