tag route parameter net data asp all asp.net event-handling postback

asp.net - route - tag helpers asp net core



Página ASP.NET con múltiples controles personalizados implementando IPostBackEventHandler (1)

La causa del problema es que debe llamar al método __doPostBack con UniqueID del control. Esto es vital. Además, básicamente los controles del servidor representan ClientID como ID del elemento y UniqueID como nombre del elemento. Entonces, si actualizas tus métodos de renderizado a lo siguiente, todo funcionará:

Caja de texto:

output.Write("<input type=''text'' id=''" + this.ClientID + "'' name=''" + this.UniqueID + "'' onchange=''__doPostBack(&#39;" + this.UniqueID + "&#39;,&#39;&#39;)'' />");

Botón:

output.Write("<input type=''button'' id=''" + this.ClientID + "'' name=''" + this.UniqueID + "'' value=''Click Me'' onclick=''__doPostBack(&#39;" + this.UniqueID + "&#39;,&#39;&#39;)'' />");

EDITAR :

Usar UniqueID parece realmente no ayudó a resolver su problema. No sé la causa del problema, pero traté de sobrescribir el cuadro de texto personalizado utilizando la clase base de WebControl y esto ayuda a resolver el problema. Entonces, puedes intentar seguir con esta implementación.

[System.Security.Permissions.PermissionSet(System.Security.Permissions.SecurityAction.Demand, Name = "FullTrust")] public class MyTextBox : WebControl, IPostBackEventHandler { public event EventHandler TextChange; protected virtual void OnTextChange(EventArgs e) { if (TextChange != null) { TextChange(this, e); } } public void RaisePostBackEvent(string eventArgument) { OnTextChange(new EventArgs()); } protected override HtmlTextWriterTag TagKey { get { return HtmlTextWriterTag.Input; } } protected override void AddAttributesToRender(HtmlTextWriter writer) { base.AddAttributesToRender(writer); writer.AddAttribute(HtmlTextWriterAttribute.Onchange, Page.ClientScript.GetPostBackEventReference(this, string.Empty)); writer.AddAttribute("onkeypress", "if (WebForm_TextBoxKeyHandler(event) == false) return false;"); writer.AddAttribute(HtmlTextWriterAttribute.Type, "text"); } }

Tengo una página ASP.Net que contiene múltiples controles que implementan la interfaz IPostBackEventHandler. La VERSIÓN SIMPLIFICADA del código se da a continuación:

public partial class WebForm1 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { //Custom Control MyTextBox mytxt = new MyTextBox(); mytxt.ID = "mytxt"; mytxt.TextChange += mytxt_TextChange; this.Form.Controls.Add(mytxt); //Custom Control MyButton mybtn = new MyButton(); mybtn.ID = "mybtn"; mybtn.Click += mybtn_Click; this.Form.Controls.Add(mybtn); } void mybtn_Click(object sender, EventArgs e) { Response.Write("mybtn_Click"); } void mytxt_TextChange(object sender, EventArgs e) { Response.Write("mytxt_TextChange"); } } [System.Security.Permissions.PermissionSet(System.Security.Permissions.SecurityAction.Demand, Name = "FullTrust")] public class MyTextBox : Control, IPostBackEventHandler { public event EventHandler TextChange; protected virtual void OnTextChange(EventArgs e) { if (TextChange != null) { TextChange(this, e); } } public void RaisePostBackEvent(string eventArgument) { OnTextChange(new EventArgs()); } protected override void Render(HtmlTextWriter output) { output.Write("<input type=''text'' id=''" + ID + "'' name=''" + ID + "'' onchange=''__doPostBack(&#39;" + ID + "&#39;,&#39;&#39;)'' />"); } } [System.Security.Permissions.PermissionSet(System.Security.Permissions.SecurityAction.Demand, Name = "FullTrust")] public class MyButton : Control, IPostBackEventHandler { public event EventHandler Click; protected virtual void OnClick(EventArgs e) { if (Click != null) { Click(this, e); } } public void RaisePostBackEvent(string eventArgument) { OnClick(new EventArgs()); } protected override void Render(HtmlTextWriter output) { output.Write("<input type=''button'' id=''" + ID + "'' name=''" + ID + "'' value=''Click Me'' onclick=''__doPostBack(&#39;" + ID + "&#39;,&#39;&#39;)'' />"); } }

Hay 2 controles personalizados: MyTextBox y MyButton implementan la interfaz IPostBackEventHandler. MyTextBox tiene el evento TextChange y MyButton tiene el evento Click.

Si mantengo solo un control en la página (MyTextBox o MyButton), la propiedad de incendios de eventos. Pero con ambos controles en la página, el evento MyTextBox TextChange se dispara incluso después de hacer clic en MyButton. El evento MyButton Click no se activa cuando MyTextBox está en la página.

He intentado varias cosas antes de publicarlo aquí. Gracias de antemano por la ayuda.