문제

  1. when ASP.NET will create QueryString["ReturnUrl"]?

  2. how to use it? i mean could you give me several typical situation when using QueryString["ReturnUrl"]?

도움이 되었습니까?

해결책

The ReturnUrl is passed around by ASP.NET as part of the default .Net authentication scheme. It's designed to check for this parameter and automatically redirect after authentication to take the user back to their original destination.

You generally don't need to use it, unless you are overriding the default authentication mechanisms in .Net, or using it for your own purpose.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top