PageAdapter.RenderPostBackEvent 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
필요한 모든 인수를 포함하여 포스트백 이벤트를 응답 스트림에 링크로 렌더링합니다.
오버로드
| Name | Description |
|---|---|
| RenderPostBackEvent(HtmlTextWriter, String, String, String, String) |
인코딩되고 암호화될 수 있는 뷰 상태, 이벤트 대상 및 인수를 포함하여 사후 복구 이벤트를 응답 스트림에 하이퍼링크로 렌더링합니다. |
| RenderPostBackEvent(HtmlTextWriter, String, String, String, String, String, String) |
인코딩되고 암호화된 뷰 상태, 이벤트 대상 및 인수, 이전 페이지 매개 변수 및 액세스 키를 포함하여 사후 복구 이벤트를 하이퍼링크로 응답 스트림에 렌더링합니다. |
| RenderPostBackEvent(HtmlTextWriter, String, String, String, String, String, String, Boolean) |
인코딩된 뷰 상태, 이벤트 대상 및 인수, 이전 페이지 매개 변수 및 액세스 키를 포함하여 포스트백 이벤트를 응답 스트림에 하이퍼링크로 렌더링합니다. |
RenderPostBackEvent(HtmlTextWriter, String, String, String, String)
인코딩되고 암호화될 수 있는 뷰 상태, 이벤트 대상 및 인수를 포함하여 사후 복구 이벤트를 응답 스트림에 하이퍼링크로 렌더링합니다.
public:
virtual void RenderPostBackEvent(System::Web::UI::HtmlTextWriter ^ writer, System::String ^ target, System::String ^ argument, System::String ^ softkeyLabel, System::String ^ text);
public virtual void RenderPostBackEvent(System.Web.UI.HtmlTextWriter writer, string target, string argument, string softkeyLabel, string text);
abstract member RenderPostBackEvent : System.Web.UI.HtmlTextWriter * string * string * string * string -> unit
override this.RenderPostBackEvent : System.Web.UI.HtmlTextWriter * string * string * string * string -> unit
Public Overridable Sub RenderPostBackEvent (writer As HtmlTextWriter, target As String, argument As String, softkeyLabel As String, text As String)
매개 변수
- writer
- HtmlTextWriter
HtmlTextWriter 대상별 출력을 렌더링하는 포함하는 메서드입니다.
설명
메서드는 RenderPostBackEvent 포스트백 이벤트를 스크립트 없는 하이퍼링크로 씁니다.
상속자 참고
클래스에서 PageAdapter 상속하는 경우 포스트백 이벤트 하이퍼링크에 다른 형식이 필요하거나 브라우저에 다른 고유한 요구 사항이 있는 경우 메서드를 재정 RenderPostBackEvent(HtmlTextWriter, String, String, String, String) 의할 수 있습니다. 예를 들어 링크가 렌더링되는 경우 일부 브라우저에서는 하이퍼링크 텍스트가 비어 있어야 합니다. 제한된 리소스가 뷰 상태를 URL 매개 변수로 포함하지 못하게 하는 경우에도 재정 RenderPostBackEvent(HtmlTextWriter, String, String, String, String) 의할 수 있습니다. 기본 메서드는 RenderPostBackEvent(HtmlTextWriter, String, String, String, String) 에 대한 softkeyLabel특성을 작성하지 않습니다.
추가 정보
적용 대상
RenderPostBackEvent(HtmlTextWriter, String, String, String, String, String, String)
인코딩되고 암호화된 뷰 상태, 이벤트 대상 및 인수, 이전 페이지 매개 변수 및 액세스 키를 포함하여 사후 복구 이벤트를 하이퍼링크로 응답 스트림에 렌더링합니다.
public:
virtual void RenderPostBackEvent(System::Web::UI::HtmlTextWriter ^ writer, System::String ^ target, System::String ^ argument, System::String ^ softkeyLabel, System::String ^ text, System::String ^ postUrl, System::String ^ accessKey);
public virtual void RenderPostBackEvent(System.Web.UI.HtmlTextWriter writer, string target, string argument, string softkeyLabel, string text, string postUrl, string accessKey);
abstract member RenderPostBackEvent : System.Web.UI.HtmlTextWriter * string * string * string * string * string * string -> unit
override this.RenderPostBackEvent : System.Web.UI.HtmlTextWriter * string * string * string * string * string * string -> unit
Public Overridable Sub RenderPostBackEvent (writer As HtmlTextWriter, target As String, argument As String, softkeyLabel As String, text As String, postUrl As String, accessKey As String)
매개 변수
- writer
- HtmlTextWriter
HtmlTextWriter 대상별 출력을 렌더링하는 포함하는 메서드입니다.
설명
이 메서드는 RenderPostBackEvent 청크 분할된 UrlEncode 뷰 상태, __EVENTTARGET=target매개 __EVENTARGUMENT=argument__PREVIOUSPAGE=currentFilePath 변수 및 특성을 포함하여 포스트백 이벤트를 스크립트 없는 하이퍼링크로 accessKey="accessKey" 씁니다.
뷰 상태는 enableViewStateMac 구성 요소의 특성이 true 설정된 경우 암호화됩니다.
상속자 참고
클래스에서 PageAdapter 상속하는 경우 포스트백 이벤트 하이퍼링크에 다른 형식이 필요하거나 브라우저에 다른 고유한 요구 사항이 있는 경우 메서드를 재정 RenderPostBackEvent(HtmlTextWriter, String, String, String, String, String, String) 의할 수 있습니다. 예를 들어 링크가 렌더링되는 경우 일부 브라우저에서는 하이퍼링크 텍스트가 비어 있어야 합니다. 제한된 리소스가 뷰 상태를 URL 매개 변수로 포함하지 못하게 하는 경우에도 재정 RenderPostBackEvent(HtmlTextWriter, String, String, String, String, String, String) 의할 수 있습니다. 기본 메서드는 RenderPostBackEvent(HtmlTextWriter, String, String, String, String, String, String) 에 대한 softkeyLabel특성을 작성하지 않습니다.
추가 정보
적용 대상
RenderPostBackEvent(HtmlTextWriter, String, String, String, String, String, String, Boolean)
인코딩된 뷰 상태, 이벤트 대상 및 인수, 이전 페이지 매개 변수 및 액세스 키를 포함하여 포스트백 이벤트를 응답 스트림에 하이퍼링크로 렌더링합니다.
protected:
void RenderPostBackEvent(System::Web::UI::HtmlTextWriter ^ writer, System::String ^ target, System::String ^ argument, System::String ^ softkeyLabel, System::String ^ text, System::String ^ postUrl, System::String ^ accessKey, bool encode);
protected void RenderPostBackEvent(System.Web.UI.HtmlTextWriter writer, string target, string argument, string softkeyLabel, string text, string postUrl, string accessKey, bool encode);
member this.RenderPostBackEvent : System.Web.UI.HtmlTextWriter * string * string * string * string * string * string * bool -> unit
Protected Sub RenderPostBackEvent (writer As HtmlTextWriter, target As String, argument As String, softkeyLabel As String, text As String, postUrl As String, accessKey As String, encode As Boolean)
매개 변수
- writer
- HtmlTextWriter
HtmlTextWriter 대상별 출력을 렌더링하는 포함하는 메서드입니다.
- encode
- Boolean
trueURL 매개 변수 구분 기호 & 로 사용 false 하려면 &.
설명
이 메서드는 RenderPostBackEvent 청크 분할된 UrlEncode 뷰 상태, __EVENTTARGET=target매개 __EVENTARGUMENT=argument__PREVIOUSPAGE=currentFilePath 변수 및 특성을 포함하여 포스트백 이벤트를 스크립트 없는 하이퍼링크로 accessKey="accessKey" 씁니다.
상속자 참고
클래스에서 PageAdapter 상속하는 경우 포스트백 이벤트 하이퍼링크에 다른 형식이 필요하거나 브라우저에 다른 고유한 요구 사항이 있는 경우 메서드를 재정 RenderPostBackEvent(HtmlTextWriter, String, String, String, String, String, String) 의할 수 있습니다. 예를 들어 링크가 렌더링되는 경우 일부 브라우저에서는 하이퍼링크 텍스트가 비어 있어야 합니다. 제한된 리소스가 뷰 상태를 URL 매개 변수로 포함하지 못하게 하는 경우에도 재정 RenderPostBackEvent(HtmlTextWriter, String, String, String, String, String, String) 의할 수 있습니다. 기본 메서드는 RenderPostBackEvent(HtmlTextWriter, String, String, String, String, String, String) 에 대한 softkeyLabel특성을 작성하지 않습니다.