.aspx siden
<%@ Page Language="VB" %>
<script runat="server">
Protected plh1 as System.Web.UI.Webcontrols.Placeholder
Sub Page_Load(Src As Object, E As EventArgs)
If Not IsPostBack Then
plh1.controls.add(CType(LoadControl("minusercontrol.ascx"),usercontrol))
End If
End Sub
</script>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="
http://www.w3.org/1999/xhtml"><head>
<title>Hej</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<form runat="server">
<asp:PlaceHolder ID="plh1" runat="server" />
</form>
</body>
</html>
--------------------------------------
minusercontrol.ascx:
<%@ control Language="VB" %>
Tekst her..
------------------------------------------------
Her skal aspx og ascx filerne ligge i samme mappe