- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
// System.Web.Security.FormsAuthentication
/// <summary>Returns the redirect URL for the original request that caused the redirect to the login page.</summary>
/// <returns>A string that contains the redirect URL.</returns>
/// <param name="userName">The name of the authenticated user. </param>
/// <param name="createPersistentCookie">This parameter is ignored.</param>
public static string GetRedirectUrl(string userName, bool createPersistentCookie)
{
if (userName == null)
{
return null;
}
return FormsAuthentication.GetReturnUrl(true);
}
http://msdn.microsoft.com/en-us/library/system.web.security.formsauthentication. getredirecturl.aspx
Разработчики ASP.NET'а опять доставляют... И не лень было столько параметров делать, а потом ещё и описывать...
kegdan 05.07.2013 00:18 # +1
public static int Random(Int range, Int minValue, int maxValue)
{
return 2;
}
guest 05.07.2013 03:17 # 0
kegdan 05.07.2013 04:20 # 0
TauSigma 05.07.2013 13:19 # +1
http://xkcd.com/221/
Коммента только соответсвующего не хватает.
kegdan 05.07.2013 15:01 # 0
BLDPAXP 25.08.2021 02:16 # 0