IPostBackEventHandler.RaisePostBackEvent(String) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Implémenté par une classe, permet à un contrôle serveur de traiter un événement déclenché lorsqu'un formulaire est publié sur le serveur.
public:
void RaisePostBackEvent(System::String ^ eventArgument);
public void RaisePostBackEvent (string eventArgument);
abstract member RaisePostBackEvent : string -> unit
Public Sub RaisePostBackEvent (eventArgument As String)
Paramètres
- eventArgument
- String
String qui représente un argument d'événement facultatif à passer au gestionnaire d'événements.
Exemples
L’exemple de code suivant définit un contrôle serveur bouton personnalisé qui provoque la publication, capture l’événement de publication à l’aide de la RaisePostBackEvent méthode et déclenche un Click
événement sur le serveur.
using System;
using System.Web.UI;
using System.Collections;
using System.Collections.Specialized;
namespace CustomControls {
[System.Security.Permissions.PermissionSet(System.Security.Permissions.SecurityAction.Demand, Name="FullTrust")]
public class MyButton: Control, IPostBackEventHandler {
// Defines the Click event.
public event EventHandler Click;
//Invoke delegates registered with the Click event.
protected virtual void OnClick(EventArgs e) {
if (Click != null) {
Click(this, e);
}
}
// Define the method of IPostBackEventHandler that raises change events.
public void RaisePostBackEvent(string eventArgument){
OnClick(new EventArgs());
}
protected override void Render(HtmlTextWriter output) {
output.Write("<INPUT TYPE = submit name = " + this.UniqueID +
" Value = 'Click Me' />");
}
}
}
Imports System.Web.UI
Imports System.Collections
Imports System.Collections.Specialized
Namespace CustomControls
<System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.Demand, Name:="FullTrust")> Public Class MyButton
Inherits Control
Implements IPostBackEventHandler
' Define the Click event.
Public Event Click As EventHandler
' Invoke delegates registered with the Click event.
Protected Overridable Sub OnClick(e As EventArgs)
RaiseEvent Click(Me, e)
End Sub
' Define the method of IPostBackEventHandler that raises change events.
Public Sub RaisePostBackEvent(eventArgument As String) _
Implements IPostBackEventHandler.RaisePostBackEvent
OnClick(New EventArgs())
End Sub
Protected Overrides Sub Render(output As HtmlTextWriter)
output.Write("<INPUT TYPE = submit name = " & Me.UniqueID & _
" Value = 'Click Me' />")
End Sub
End Class
End Namespace
Remarques
La page transmet la valeur du eventArgument
paramètre à la RaisePostBackEvent
méthode du contrôle qui implémente l’interface IPostBackEventHandler . Ce contrôle affiche également l’élément HTML qui provoque la publication. Si le contrôle restitue le script côté client pour la publication, l’argument du script est passé dans le eventArgument
paramètre . Si la publication est due à une opération d’envoi simple, le eventArgument
paramètre est null
.
Cette méthode fournit les fonctionnalités de nombreux événements implémentés par les contrôles serveur HTML et Web.