TFS_ANTIGUO/SIGPC/formulario.master.cs
kledezma 290b81b54d SIGPC
git-tfs-id: [http://192.168.1.10:8080/tfs/AyA]$/SINORT;C518
2021-01-22 14:59:35 +00:00

17 lines
427 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class formulario : System.Web.UI.MasterPage
{
protected void Page_Load(object sender, EventArgs e)
{
if ( Request["sesion"] == "expiro")
Response.Redirect("../wfrLogin.aspx?sesion=expiro", false);
}
}