Finns det något sätt att registrera web controls i code behind istället för att göra enligt koden nedan? i asp 1.1 gör du så här:Registrera Web Control i code behind?
<%@ Register TagName="name" TagPrefix="prefix" Src="~/control.ascx" %>
Sv: Registrera Web Control i code behind?
<code>
Control hdrCtl = null;
hdrCtl = LoadControl("enkontroll.ascx");
if (hdrCtl != null)
{
this.PlaceHolder1.Controls.Add(hdrCtl); //laddar din uc i en placeholder
}
</code>
borde va något liknande i 2.0