ClearCanvas.ImageServer.Web.Application.Pages.Login.LoginPage.RedirectAfterLogin C# (CSharp) Method

RedirectAfterLogin() private method

private RedirectAfterLogin ( ) : void
return void
		private void RedirectAfterLogin()
		{
			//The GetRedirectUrl method returns the URL specified in the query string using the ReturnURL variable name.

			var redirectUrl = SessionManager.GetRedirectUrl(SessionManager.Current);
			HttpContext.Current.Response.Redirect(redirectUrl, true);
		}