อ่านในภาษาอังกฤษ แก้ไข

แชร์ผ่าน


MenuAdapter.RaisePostBackEvent(String) Method

Definition

Used to maintain the path of the menu when a postback event is raised.

C#
protected virtual void RaisePostBackEvent(string eventArgument);

Parameters

eventArgument
String

A String that represents the path of the current node in the menu hierarchy.

Exceptions

The depth of the current node is more than allowed. This can be caused by an invalid declaration, by a change since the last request, or by a forged (spoofed) request.

Remarks

The RaisePostBackEvent method is called when the RaisePostBackEvent event is raised, and is used to maintain the navigation path of the menu. The eventArgument parameter contains a delimited string of menu items that identify the current location in the menu hierarchy.

The page passes the value of eventArgument to the associated control's RaisePostBackEvent method. The associated Menu control also renders the markup element that causes the postback to occur. If the control renders client-side script for postback, the argument from the script is passed in the eventArgument parameter. If the postback is caused by a simple submit, eventArgument is null.

Applies to

ผลิตภัณฑ์ เวอร์ชัน
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also