Web User Control (.ascx) คือ ส่วนของ Control ที่ใช้จัดเก็บ Form , Design หรือ Control ต่าง ๆ เหมือนกับ Web Form (.aspx) แต่แตกต่างกันตรงที่ Web User Control (.ascx) จะถูกเรียกใช้งานโดย Web Form (.aspx) ถ้าความเข้าใจใจภาษา ASP,PHP ก็คือการ Include เข้ามาในโปรเจคนั่นเองครับ
<%@ Register Src="MyUserControl.ascx" TagName="MyUserControl" TagPrefix="uc1" %>
<%@ Page Language="VB" %>
<script runat="server">
Sub Page_Load(sender As Object, e As EventArgs)
'*** Code ***'
End Sub
</script>
<html>
<head>
<title>ThaiCreate.Com ASP.NET - Web User Control</title>
</head>
<body>
<form id="form1" runat="server">
<uc1:MyUserControl id="MyUsrCtrl" runat="server" />
</form>
</body>
</html>
MyUserControl.ascx
<script Language="VB" runat="server">
Sub Page_Load(sender As Object, e As EventArgs)
'*** Code ***'
Me.lblText.Text = "ThaiCreate.Com Banner"
End Sub
</script>
<table style="width: 495px" border="1">
<tr>
<td style="height: 73px; text-align: center">
<asp:Label ID="lblText" runat="server" Font-Size="X-Large"></asp:Label></td>
</tr>
</table>
Screenshot
ASP.NET & Visual Studio .Net 2003 - Web User Control