HttpRuntimeSection.UseFullyQualifiedRedirectUrl 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
클라이언트 쪽 리디렉션이 정규화되었는지 여부를 나타내는 값을 가져오거나 설정합니다.
public:
property bool UseFullyQualifiedRedirectUrl { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("useFullyQualifiedRedirectUrl", DefaultValue=false)]
public bool UseFullyQualifiedRedirectUrl { get; set; }
[<System.Configuration.ConfigurationProperty("useFullyQualifiedRedirectUrl", DefaultValue=false)>]
member this.UseFullyQualifiedRedirectUrl : bool with get, set
Public Property UseFullyQualifiedRedirectUrl As Boolean
속성 값
true클라이언트 쪽 리디렉션이 정규화된 경우 그렇지 않으면 . false 기본값은 false입니다.
- 특성
예제
다음 예제에서는 속성을 사용 하는 방법을 보여 있습니다 UseFullyQualifiedRedirectUrl .
// Get the UseFullyQualifiedRedirectUrl property value.
Response.Write("UseFullyQualifiedRedirectUrl: " +
configSection.UseFullyQualifiedRedirectUrl + "<br>");
// Set the UseFullyQualifiedRedirectUrl property value set to true.
configSection.UseFullyQualifiedRedirectUrl = true;
' Get the UseFullyQualifiedRedirectUrl property value.
Response.Write("UseFullyQualifiedRedirectUrl: " & _
configSection.UseFullyQualifiedRedirectUrl & "<br>")
' Set the UseFullyQualifiedRedirectUrl property value set to true.
configSection.UseFullyQualifiedRedirectUrl = True
설명
이 속성은 UseFullyQualifiedRedirectUrl 클라이언트 쪽 리디렉션이 정규화되었는지(형식 http://server/path으로) 또는 상대 리디렉션이 클라이언트로 대신 전송되는지 여부를 나타냅니다.
메모
이 값이면 일부 브라우저에서 쿠키 없는 세션에서 페이지를 로드하는 데 문제가 있을 수 있습니다 false.