L
Lukas Kurka
Hi,
I would like to create user control which will provide OnClick and other
events. Something like
index.aspx
.....
<uc1:MyControl id="MyControl1" runat="server" OnClick="MyControl1_Clicked"
/>
.....
index.aspx.cs
protected void MyControl1_Clicked(object sender, EventArgs e)
{
}
How can I do this?
Thanks
Lukas
I would like to create user control which will provide OnClick and other
events. Something like
index.aspx
.....
<uc1:MyControl id="MyControl1" runat="server" OnClick="MyControl1_Clicked"
/>
.....
index.aspx.cs
protected void MyControl1_Clicked(object sender, EventArgs e)
{
}
How can I do this?
Thanks
Lukas