Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
3k views

How to elegantly handle ReturnUrl when using UrlRewrite in ASP.NET 2.0 WebForms

I have a folder with multiple .aspx pages that I want to restrict access to. I have added web.config to that folder with <deny users="?"/>. The problem is that ReturnUrl is auto-generated with ...
2
votes
2answers
84 views

C# ASP.Net Authentication when Logging In/Registering

I am struggling to get my LogIn/Registering system working. I have a register.aspx page in which a user signs up and all this data is entered into a database, Then I have a Login.aspx where the user ...
2
votes
1answer
62 views

Internet Explorer, Safari, Opera removes hash value from returnUrl

I want to keep hash value in returnURL when user is sent to LogOn controller, but IE7-9/Safari/Opera removes it. For example, I try this URL ...
2
votes
2answers
2k views

MVC3 Redirect after login

Been trying to put together an mvc login page that will redirect back to the original page that required authorization based on other stack overflow posts. Redirect with protected override void ...
1
vote
2answers
90 views

encoding returnUrl query string in ASP.NET MVC

I'm trying to pass ReturnUrl query string to my login page. I have a partial Login view (kind of like a login box) and a login view. Right now, I have the following line in my partial view: using ...
1
vote
2answers
217 views

PayPal Integration Methods / Simple Solution with safe Return-URL

I do need to integrate PayPal on a website with a single click, always the same price and no shopping cart (A Pay Now/Donate Button I guess would ok!). However: I need to have the ability of a custom ...
1
vote
1answer
747 views

I have a Login Control.Even after successful Login it does not redirects to destination page

I have a ASP.NET Login Control with Forms authentication.Even after successful Login it does not redirects to destination page.But it uses returnURL and stays at same Login page.How to make Login ...
1
vote
1answer
409 views

ASP.Net MVC ReturnUrl Practice

I have a question about the returnUrl querystring parameter that is appended by ASP.Net when attempted to hit a page that requires authentication. In looking at Microsoft NerdDinner Sample's LogOn ...
1
vote
1answer
673 views

ReturnUrl = Default.aspx for MVC?

I'm trying to secure my entire MVC site, so before the Home controller, I added an [Authorize] attribute. Now if you run it from Visual Studio or navigate using the root URL (e.g. ...
1
vote
1answer
2k views

Disable the Return URL in Form Authentication

In our website, we add a log whenever a user logs in. Now we add the log just before it goes to the home page. But, suppose when the user is not logged in and try to hit any url other than the home ...
0
votes
0answers
34 views

Need redirection relative to the root path from custom authorization class

I have a custom authorization class to enable a login page different than the default. However it redirects to false URL. I would like to be redirected to "/Customer" instead of "/Account/Customer". ...
0
votes
1answer
59 views

Paypal SetExpressCheckout won't return to “RETURN URL”

I'm trying to set up a paypal solution but i'm having some trouble with the RETURNURL. My form looks like this. <form method="post" action="https://api-3t.paypal.com/nvp"> <input ...
0
votes
3answers
183 views

Sitecore Intranet Login ReturnUrl=%2fDefault.aspx

My Sitecore Intranet Portal used to work fine, and i haven't done any changes to my site in days, but suddenly when i try to go to my frontpage i will get a blank "Untitled Page" at this location: ...
0
votes
0answers
94 views

Special characters in returnUrl when using MVC and forms authentication

I am using a JQuery plugin called address for handling browser history in an ajax based site. Link This plugin uses the # character in the URL for handling the different sections in the site and it ...
0
votes
2answers
454 views

ASP.Net Authentication if ReturnURL null UserData comes empty

Hi there is a problem in my login page. The scenario is, For example i go to www.mydomain.com/admin/ its redirecting me to the login page with ReturnURL parameter like this. ...
0
votes
1answer
230 views

Encrypting the ReturnURL in ASP.NET

I am wondering if its possible to encrypt the ReturnURl before it's displayed to the end user. I am pretty new at .NET, but I have tried using the PostAuthenticateRequest in the Global.asax. But ...
0
votes
0answers
166 views

How to continue with a Javascript action (like returnUrl) on a page once a user has logged in / been authorized in ASP.NET MVC 3

I have actions on a page that require the [Authorize] attribute. As expected they trigger a login modal. After authenticating/authorizing the user, the user has to click on the javascript action ...
0
votes
1answer
657 views

Get full URL with hash to use as ReturnUrl

I have such URL localhost/Login/LogOn?ReturnUrl=/#&q=my%20search%20word&f=1//447044365|2//4 I need to get hash parameters to navigate in the application after authentication. I try to ...
0
votes
2answers
635 views

Unauthorized request does not redirect to login page with returnUrl query string parameter

Setup In my MVC3 app, MembersController is decorated with an [Authorize] attribute. MembersController has an Action called MyPage. Due to the Authorize attribute on the controller, MyPage can only ...
0
votes
1answer
507 views

create manually parameter ReturnUrl

i have view like 'home/details/5', it can be access by anonymous user. but there is button, which can be pressed only by registered users. no problem, i can look into Request.IsAuthenticated , and if ...