Pytanie : ASP.NET C# Użytkownik Kontrola Zagadnienie

I tworzyć ASP.NET użytkownik kontrola i I wydarzenie tworzyć niektóre ASP.NET kontrola w Odpłacać się override metoda i dostawianie stuknięcie wydarzenie. Ale jeżeli I klikać the kontrola the strona poczta z powrotem ale the wydarzenie podpalać. Jeżeli I tworzyć the ten sam kontrola z the ten sam kod w inny teren (eg. Page_Load) ono pracować świetnie. Co być I źle?

I dołączać niektóre próbka kod niektóre, ale usuwać the niektóre część the code.
(1):
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

jawny częściowy klasa Controls_Pager2: System.Web.UI.UserControl
{
	ochraniać kawitacyjny Page_Load (przedmiot nadawca, EventArgs e)
	{
	}

	ochraniać override pustka Odpłacać się (HtmlTextWriter pisarz)
	{
		LinkButton linkButton = nowy LinkButton ();
		linkButton.ID = "btnNext";
		linkButton.Text = "Następnie";
		linkButton.CommandArgument = (_pageNumber++) .ToString ();
		linkButton.Click += btnNext_Click;
		PlaceHolder1.Controls.Add (linkButton);
		baza. Odpłacać się (pisarz);
	}

	ochraniać kawitacyjny btnNext_Click (przedmiot nadawca, EventArgs e)
	{
		Response.Write ("Klikać");
	}

}

Odpowiedź : ASP.NET C# Użytkownik Kontrola Zagadnienie

Inne rozwiązania  
 
programming4us programming4us