Posted on: 2/23/2013 6:38:30 PM | Views : 965

Hi all..
I have been trying to get my logout control to logout for the past 4 hours... well, today anyway!
My application logs out from anywhere with the url ending with .aspx e.g http://localhost/mywebsite/Default.aspx or AnyPage.aspx...
I am using a UrlRewriter to to make browser friendly url's on my product pages, which look something like:
http://localhost/mywebSite/Harry-Potter-p1/
This is great for my friendly Url's but not for my loggout because the logout control doesn't work on any of my product pages that have this type of rewritten url...!!!
I have attempted to alter the xml urlRewriter, and also tried to create a work around by putting something in code behind like:
protected void LoginStatus1_LoggingOut(object sender, LoginCancelEventArgs e) { this.LoginView1.ResolveUrl(Request.Url.AbsoluteUri); } but this loggingOut event is nev ...

Go to the complete details ...