PagesSection.EnableViewStateMac 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
클라이언트에서 페이지를 다시 게시할 때 ASP.NET에서 페이지의 뷰 상태에 대해 MAC(메시지 인증 코드)를 실행해야 하는지 여부를 지정하는 값을 가져오거나 설정합니다.
public:
property bool EnableViewStateMac { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("enableViewStateMac", DefaultValue=true)]
public bool EnableViewStateMac { get; set; }
[<System.Configuration.ConfigurationProperty("enableViewStateMac", DefaultValue=true)>]
member this.EnableViewStateMac : bool with get, set
Public Property EnableViewStateMac As Boolean
속성 값
클라이언트에서 페이지를 다시 게시할 때 ASP.NET에서 페이지의 뷰 상태에 대해 MAC(메시지 인증 코드)를 실행해야 하면 true
이고, 그렇지 않으면 false
입니다. 기본값은 true
입니다.
- 특성
예제
다음 코드 예제에서는 EnableViewStateMac 속성을 사용하는 방법을 보여 줍니다.
// Get the current EnableViewStateMac property value.
Console.WriteLine(
"Current EnableViewStateMac value: '{0}'",
pagesSection.EnableViewStateMac);
// Set the EnableViewStateMac property to true.
pagesSection.EnableViewStateMac = true;
' Get the current EnableViewStateMac property value.
Console.WriteLine( _
"Current EnableViewStateMac value: '{0}'", _
pagesSection.EnableViewStateMac)
' Set the EnableViewStateMac property to true.
pagesSection.EnableViewStateMac = True
설명
뷰 상태 MAC 숨겨진 변수 페이지를 브라우저에 보낼 때 페이지의 뷰 상태를 유지 되는 암호화 된 버전이 있습니다. 이 속성 설정 된 경우 true
, 클라이언트에서 훼손 되었는지 확인 합니다. 암호화 된 뷰 상태를 확인 합니다.
중요
이 특성 설정 하면 안 false
페이지나 애플리케이션 뷰 상태를 사용 하지 않는 경우에 프로덕션 웹 사이트를 합니다. 뷰 상태 MAC 보안 뷰 상태 외에도 다른 ASP.NET 기능을 방지할 수 있습니다.