1 <%@ Control Language="C#" AutoEventWireup="false" CodeBehind="EmployeeControl.ascx.cs" Inherits="AspnetSample.views.EmployeeControl" %>
\r
3 <table border="1" cellpadding="1" cellspacing="1">
\r
4 <tr style="background-color: orange">
\r
5 <th align="center">Id</th>
\r
6 <th align="center">Name</th>
\r
7 <td align="center">Country</td>
\r
10 <td><asp:TextBox ID="txtID" Width="50px" runat="server"/></td>
\r
11 <td><asp:TextBox ID="txtName" Width="150px" runat="server"/></td>
\r
12 <td><asp:TextBox ID="txtCountry" Width="100px" runat="server"/></td>
\r
15 <td colspan="3"></td>
\r
18 <td colspan="3" align="center">
\r
19 <asp:Button ID="btnAdd" runat="server" Text="Add" OnClick="btnAdd_Click" />
\r
20 <asp:Button ID="btnRemove" runat="server" Text="Remove" OnClick="btnRemove_Click" />
\r