Web User Controls

 

Web user controls

Web user controls are derived from System.Web ..UI.UserControl namespace. These controls once created, can be added to the aspx page either at design time or programmatically during run time. But they lack the design time support of setting the properties created along with the control. They cannot run on their own and they need to stand on another platform like an aspx page. Even if we try to load it on a web browser, IIS will not serve the files of the type .ascx.

  1. Create a new ASP .Net web application using Visual Studio  .Net.

  1. Add a Web User Control to the project. Name it as WebUserControl1.ascx.
     

  2. Add a Panel Control on the user control form

  1. Add a hyperlink,a TextBox and a button Add a property to the User Control as follows.

    <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="WebUserControl1.ascx.cs" Inherits="WebApplication3.WebUserControl1" %>
    <style type="text/css">
    .style1
    {
    width: 100%;
    }
    .style2
    {
    width: 927px;
    }
    </style>
    <table class="style1">
    <tr>
    <td bgcolor="#990000" class="style2">
    <asp:HyperLink ID="HyperLink1" runat="server" Font-Bold="True"
    ForeColor="White" NavigateUrl="~/Home.aspx">Home</asp:HyperLink>
    </td>
    <td>
    &nbsp;</td>
    </tr>
    <tr>
    <td class="style2">
    <br />
    </td>
    <td>
    &nbsp;</td>
    </tr>
    </table>
    <asp:Panel ID="Panel1" runat="server">
    <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
    <br />
    <br />
    <asp:Button ID="Button1" runat="server" Text="Button" />
    </asp:Panel>

    img1.bmp

     

  2. write the following code in WebUserControl1.ascx.cs file

    using
    System;
    using
    System.Collections;
    using
    System.Configuration;
    using
    System.Data;
    using
    System.Linq;
    using
    System.Web;
    using
    System.Web.Security;
    using
    System.Web.UI;
    using
    System.Web.UI.HtmlControls;
    using
    System.Web.UI.WebControls;
    using
    System.Web.UI.WebControls.WebParts;
    using
    System.Xml.Linq;
    using
    System.Drawing;

    namespace
    WebApplication3
    {
    public
    partial class WebUserControl1 : System.Web.UI.UserControl }
    {
    protected
    void Page_Load(object sender, EventArgs e)
    {
    Panel1.BackColor = backColor;
    }
    protected
    Color backColor;
    public
    Color BackColor
    {
    get
    {
    return
    backColor;
    }
    set
    {
    backColor = value;
    }

    }

    }
    }
     

  3. The above can be used set the Background color of the control. Add the following code to the Page_Load event of the control.

    protected void Page_Load(object sender, EventArgs e)

    {

    Panel1.BackColor = backColor;

    }

    Now Add another web form as Home.aspx.

  4. Drag and drop the WebUserControl1.ascx into the Web form. This will put the following entries in the aspx page.

  5. <%@ Register src="WebUserControl1.ascx" tagname="WebUserControl1" tagprefix="uc1" %>

  6. <uc1:WebUserControl1 ID="WebUserControl11" runat="server" /> This entry will be found inside the <form> .. </form> tag.

  7. Build the application.

  8. Select and view the TestPage.aspx in the browser. This will show the aspx page with the control loaded with it.

       Now if we need we can change the background color to Gray, by adding the property in the control as follows.

    <
    uc1:WebUserControl1 ID="WebUserControl11" runat="server" BackColor=Gray/>

    Now if the application is built, the home.aspx will show our user control with a gray background.

    img2.bmp

Advantages of a Web User Control:

The biggest advantage of the Web User controls is that they can be created as a site template and used through out the site. For example they can be made to contain the Menu/Link structure of a site and can be used at all the other aspx pages. 

This means the following :

  1. If the website introduces a new site-wide link within the current layout/structure, it is enough if we put it on the user control once. All pages will be updated once if the web user control is used in them.

  2. If there is any link to be corrected, it can be done once at the server side.  

  3. The .ascx files can either be used as a simple alternative to the plain HTML or they can also be used to respond to events: This means even custom code can be created against them and put in the code behind files.

Drawbacks / Disadvantages:

Though the User controls offer a flexibility of having a site wide modifications, if the whole structure of the site changes, the HTML/aspx code of all the pages should be modified. But as long as the site maintains a same layout, then Web User controls are the number one choice for maintaining the generic layout of the site.

Another disadvantage is It can not be just be simply referenced for using in a different project. If we want to use this User Control in a different project, we have to copy the file and modify the namespace to the host namespace name.

Up Next
    Ebook Download
    View all
    Learn
    View all