Logout.aspx.cs
דף זה הוא הקוד מאחור של Logout.aspxuser_2706180
csharp
2 years ago
465 B
8
Indexable
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace YoadMadrid.Pages
{
public partial class WebForm13 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Session["Login"] = false;
Session["Username"] = null;
Response.Redirect("MainMaster.aspx");
}
}
}Editor is loading...
Leave a Comment