Logout.aspx.cs
דף זה הוא הקוד מאחור של Logout.aspxuser_2706180
csharp
10 months ago
465 B
1
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