I'm having a problem with a redirect. I don't think it's a code problem, so this may be in the wrong forum.
I have a C#/ASP application that uses an ASP page to do a login. It checks the user and password against a SQL database. Upon passing the password check it does a redirect to an HTML page.
It gets through everything except the redirect when I am accessing the page from a remote computer. I can access the login page, I can browse the directories (I enabled that while trying to figure this out) I can even raise the HTML page directly (it doesn't operate because when I open it directly it doesn't have the user id. That's expected.)
The call I'm using is: HttpContext.Current.Response.Redirect("ESMSAdmin.html");
This has worked in the past. It may be a permissions thing, but I can't find it.
Can somebody give me some advice? I've been working on this for three days - I can't find anything. I'm stumped.
Thanks in advance for any help you can provide.
I have a C#/ASP application that uses an ASP page to do a login. It checks the user and password against a SQL database. Upon passing the password check it does a redirect to an HTML page.
It gets through everything except the redirect when I am accessing the page from a remote computer. I can access the login page, I can browse the directories (I enabled that while trying to figure this out) I can even raise the HTML page directly (it doesn't operate because when I open it directly it doesn't have the user id. That's expected.)
The call I'm using is: HttpContext.Current.Response.Redirect("ESMSAdmin.html");
This has worked in the past. It may be a permissions thing, but I can't find it.
Can somebody give me some advice? I've been working on this for three days - I can't find anything. I'm stumped.
Thanks in advance for any help you can provide.