Hi
Inside method - WebForms:
protected void Page_Load(object sender, EventArgs e)
{
}
I put....
if (HttpContext.Current.Session["UsuarioId"] == null) HttpContext.Current.Response.Redirect(Url.UrlLogin);
Is correct put this validation in page_load.. or in another Event?
Go to the complete details ...