Raises events for the System.Web.UI.WebControls.BulletedList control when a form is posted back to the server.
The BulletedList.RaisePostBackEvent(string) method is used internally by the System.Web.UI.WebControls.BulletedList control when a link button within the item list is clicked. The containing page specifies the index of the clicked link button in the eventArgument parameter, which is used to initialize the BulletedListEventArgs.Index property of a System.Web.UI.WebControls.BulletedListEventArgs object. The BulletedList.RaisePostBackEvent(string) method raises a BulletedList.Click event by passing the initialized System.Web.UI.WebControls.BulletedListEventArgs object to the BulletedList.OnClick(BulletedListEventArgs) method.
The BulletedList.RaisePostBackEvent(string) method optionally can perform validation before raising the BulletedList.Click event for the control. To validate a group of controls on the page when a link button within the System.Web.UI.WebControls.BulletedList is clicked, set the ListControl.CausesValidation property to true and specify the group of controls to be validated in the ListControl.ValidationGroup property.