- Changed ReflectionBasedDictionaryAdapter to ignore calls to Remove instead of throw...
[castle.git] / MonoRail / TestSite / views / binding / EmployeeControl.ascx
blob622d0f9452cd1ab2fb0b2954fef4f3b62c92f4a9
1 <%@ Control Language="C#" AutoEventWireup="false" CodeBehind="EmployeeControl.ascx.cs" Inherits="AspnetSample.views.EmployeeControl" %>\r
2 \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
8         </tr>\r
9         <tr>\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
13         </tr>\r
14         <tr>\r
15                 <td colspan="3"></td>\r
16         </tr>\r
17         <tr>\r
18                 <td colspan="3" align="center">\r
19                         <asp:Button ID="btnAdd" runat="server" Text="Add" OnClick="btnAdd_Click" />&nbsp;&nbsp;\r
20                         <asp:Button ID="btnRemove" runat="server" Text="Remove" OnClick="btnRemove_Click" />\r
21                 </td>\r
22         </tr>\r
23 </table>