Welcome to mirror list, hosted at ThFree Co, Russian Federation.

logout.aspx « webdoc - github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af3621be0b4a01fcefebfe281083978aded75f98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<%@ Import Namespace="System.Web.Security" %>
<html>
<script language="C#" runat=server>
        void Page_Load (object sender, EventArgs e)
        {
		FormsAuthentication.SignOut ();
		Response.Redirect ("index.aspx");
        }
</script>
<body>
</body>
</html>