User Controls

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="UcDemo.aspx.cs" Inherits="UserControlDemo.UcDemo" %>  

<%@ Register Src="~/ContactUC.ascx" TagPrefix="uc1" TagName="ContactUC" %>  

 

<!DOCTYPE html>  

 

<html xmlns="http://www.w3.org/1999/xhtml">  

<head runat="server">  

    <title></title>  

</head>  

<body>  

    <form id="form1" runat="server">  

    <div>  

        <uc1:ContactUC runat="server" id="ContactUC"/>  

    </div>  

    </form>  

</body>  

</html>