Posted on: 6/26/2014 8:38:49 PM | Views : 350

I have created a user control named WebUserControl1.ascx: <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="WebUserControl1.ascx.cs" Inherits="UserControl.WebUserControl1" %> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> <asp:TextBox ID="TextBox2" runat="server"></asp:TextBox> <asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Button" /> <asp:CheckBoxList ID="CheckBoxList1" runat="server"> </asp:CheckBoxList> using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace UserControl {     public partial class WebUserControl1 : System.Web.UI.UserCon ...

Go to the complete details ...