Ask a Question related to ASP.NET Security, Design and Development.
-
dave #1
Response redirect Doesnt Work
Why oh why doesnt this work???
I have a simple forms authentication that all works fine, ie it validates
user details against a db.
When i try to redirect it goes off to nowhere.
eg - code snippet:
FormsAuthentication.SetAuthCookie(dat("USER_ID"), AutoLogin.Checked)
Context.Response.Redirect("index.aspx")
'and tried just Response.Redirect("index.aspx")
Both of which look like they are going off somewhere, but never reach the
desired page. I have also tried the following within the <HTML> tag, but
still the same result?
if User.Identity.IsAuthenticated then
response.redirect("index.aspx")
end if
This is driving me totally nuts!
Hope someone can help.
dave Guest
-
redirect to guest if first redirect is doesnt work for a user
Hi all, I was wondering if anyone could help me solve a problem Once a user hits a certain webpage ..I try to redirect them to another using... -
Response.buffer doesnt work
Hello, I am testing buffering an asp page and Flushing information out to the browser, hence i wrote the code in an asp page that follows this... -
Response.Redirect doesn't seem to work on NT 4.0 SP6a clients!
Hi there, I have a web application that recently got redesigned and now makes use of Response.Redirect . The "new" application is hosted on... -
Response.Write and Response.Redirect
On my Page_Load event, i need to do some validation and then either let them proceed, or display a error message and boot them back to the previous... -
Redirect to New Browser Window like Response.Redirect
That worked just fine for me as long as you put that open statement on one line rather than 2. "michel" <michely3k@yahoo.com> wrote in... -
Randy Charles Morin #2
Re: Response redirect Doesnt Work
Have you tried calling Response.End after the redirect? I do it out of
habit, don't know if it actually makes a dif.
Randy
[url]http://www.kbcafe.com[/url]
"dave" <dave@edin.co.uk> wrote in message news:<#Ts7iTFtDHA.560@TK2MSFTNGP11.phx.gbl>...> Why oh why doesnt this work???
>
>
> I have a simple forms authentication that all works fine, ie it validates
> user details against a db.
>
> When i try to redirect it goes off to nowhere.
>
> eg - code snippet:
>
> FormsAuthentication.SetAuthCookie(dat("USER_ID"), AutoLogin.Checked)
> Context.Response.Redirect("index.aspx")
> 'and tried just Response.Redirect("index.aspx")
>
> Both of which look like they are going off somewhere, but never reach the
> desired page. I have also tried the following within the <HTML> tag, but
> still the same result?
>
> if User.Identity.IsAuthenticated then
> response.redirect("index.aspx")
> end if
>
>
> This is driving me totally nuts!
>
> Hope someone can help.Randy Charles Morin Guest
-
Raj Lealh #3
Re: Response redirect Doesnt Work
This problem is driving me nuts too!!
Response.End does not work either. :0(
I've seen some strange things happen. I do have a version that works...
But when I use a web service to authenticate (called when submitting
username and password), the call to:
Response.Redirect(
FormsAuthentication.GetRedirectUrl(txtUserName.Tex t,
false));
does not work, but just loops on the login page.
Is there anyone that knows why?
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Raj Lealh Guest
-
dave #4
Re: Response redirect Doesnt Work
FOUND IT!
The reason in my case was SmartNavigation="True" was set at the top of the
login.aspx page - soon as i removed it - it starting working.
Hope this helps others......
"Raj Lealh" <rlealh@utnet.utoledo.edu> wrote in message
news:uOyt7gdtDHA.2932@TK2MSFTNGP11.phx.gbl...> This problem is driving me nuts too!!
>
> Response.End does not work either. :0(
>
> I've seen some strange things happen. I do have a version that works...
>
> But when I use a web service to authenticate (called when submitting
> username and password), the call to:
>
> Response.Redirect(
> FormsAuthentication.GetRedirectUrl(txtUserName.Tex t,
> false));
>
> does not work, but just loops on the login page.
>
> Is there anyone that knows why?
>
>
> *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
> Don't just participate in USENET...get rewarded for it!
dave Guest
-
Raj Lealh #5
Re: Response redirect Doesnt Work
I found the problem was due to the size of the cookie (> 4.0 KB)
I was trying to populate the cookie with group names retrieved from
parsing through Windows 2000 Active Directory. The size of the output
(xml) was too big, just over 4.0 kb, since I retrieved all nested groups
that the user belonged to.
I ended up implementing forms authentication without cookies, and now it
works fine. You just have to put in a few extra measures to deal with
security of the mangled URL... ;o)
example of mangled url (contains session id in brackets):
[url]http://myserver.edu/(weQWerw34534532456)/admin.aspx[/url]
Interesting.. eh?
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Raj Lealh Guest



Reply With Quote

