2004-09-30, 02:25 PM
Is it possible to disable the security built into the new web scheduling service? The machine I have this running on is behind a firewall at home and I have sufficient security before I can get to it, so I don't need the extra login. I like to leave open a window with the Guide or the Manage Recordings tab, and then just refresh that page hours later. When I do so, I have to login again, and it takes me to the Guide page with the current time, rather than where I was before. I have developed in ASP for years, but haven't looked at ASP.net at all. I attempted to comment out the following lines in the *.cs files, like so:
// check user is logged in
//if (Session["LoggedIn"] == null)
//{
// ...if not, send them back to the login page
// Response.Redirect("Login.aspx");
//}
That had no effect. I don't see any code in the .aspx files that redirects to the login page. How does this work? Thanks for any help anyone can provide.
// check user is logged in
//if (Session["LoggedIn"] == null)
//{
// ...if not, send them back to the login page
// Response.Redirect("Login.aspx");
//}
That had no effect. I don't see any code in the .aspx files that redirects to the login page. How does this work? Thanks for any help anyone can provide.