TextBoxControl.ascx
上传用户:husern
上传日期:2022-03-24
资源大小:534k
文件大小:1k
- <%@ Register Assembly="Itenso.WebUserForms.Controls" Namespace="Itenso.WebUserForms.Controls"
- TagPrefix="cc1" %>
- <%@ Control Language="C#" AutoEventWireup="true" %>
- <table width="100%">
- <tr>
- <td width="20%">
- <asp:Label ID="Label1" runat="server" Text="User Name:"></asp:Label>
- </td>
- <td>
- <cc1:TextBox ID="TextBox1" runat="server" FieldName="UserName"></cc1:TextBox>
- </td>
- </tr>
- <tr>
- <td>
- <asp:Label ID="Label2" runat="server" Text="User Name:"></asp:Label>
- </td>
- <td>
- <cc1:TextBox ID="TextBox2" runat="server" FieldName="UserName"></cc1:TextBox>
- </td>
- </tr>
- <tr>
- <td>
- <asp:Label ID="Label3" runat="server" Text="Multiline Edit:"></asp:Label>
- </td>
- <td>
- <cc1:TextBox ID="TextBox3" runat="server" FieldName="Description" Height="200px"
- TextMode="MultiLine" Width="300px"></cc1:TextBox>
- </td>
- </tr>
- <tr>
- <td>
- <asp:Label ID="Label4" runat="server" Text="Zip (Max 5 Char):"></asp:Label>
- </td>
- <td>
- <cc1:TextBox ID="TextBox4" runat="server" FieldName="UserZip" MaxLength="5"></cc1:TextBox>
- </td>
- </tr>
- </table>
- <cc1:UserFormHeader ID="UserFormHeader1" runat="server" Description="Text Box Control"
- Type="Test" Name="TextBoxControlForm" />