2014年2月25日 星期二

[ASP.NET] Server Control Table使用記錄

命名空間:
System.Web.UI.WebControls


語法:
<asp:Table borderwidth="1" id="tbTest" runat="server">
           <asp:TableRow>
               <asp:TableCell>
                   <asp:Label ID="lblUserNo" runat="server" Text="" />
               </asp:TableCell>
               <asp:TableCell>
                   <asp:Label ID="lblBirthday" runat="server" Text="" />
               </asp:TableCell>
           </asp:TableRow>
           <asp:TableRow>
               <asp:TableCell>
                   <asp:TextBox ID="txtUserNo" runat="server"></asp:TextBox>
               </asp:TableCell>
               <asp:TableCell>
                   <asp:TextBox ID="txtBirthday" runat="server"></asp:TextBox>
                   <asp:CalendarExtender ID="txtBirthday_CalendarExtender" runat="server"
                        Enabled="True" TargetControlID="txtBirthday" Format="yyyy/MM/dd">
                   </asp:CalendarExtender>
               </asp:TableCell>
           </asp:TableRow>
</asp:Table>


參考資料:
http://msdn.microsoft.com/zh-tw/library/system.web.ui.webcontrols.table(v=vs.110).aspx
http://imagine-code.blogspot.tw/2013/07/aspnet_3.html

沒有留言:

張貼留言