熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

使用ASP.Net中的自定義控件[5]

2022-06-13   來源: .NET編程 
    ——此文章摘自《ASPNET網絡數據庫開發實例精解》定價 特價 詳細>>

    控件myDataGrid用來顯示數據控件ShowMsg用來獲取DataGrid控件中被選擇的子項中的所有文本控件CheckMsg用來顯示控件ShowMsg獲取的文本頁面TestCheckBoxaspx的設計界面如     圖所示


  頁面TestCheckBoxaspx的設計界面

     頁面TestCheckBoxaspx的HTML設計代碼如下
    <%@ Page language=c# Codebehind=TestCheckBoxaspxcs
    AutoEventWireup=false Inherits=Example__TestCheckBox %>
    <HTML><HEAD><title>Example__使用ASPNET中的自定義控件</title></HEAD>
    <asp:DataGrid id=myDataGrid runat=server
    AutoGenerateColumns=False>
    <Columns>
    <asp:TemplateColumn HeaderText=名稱><ItemTemplate>
    <asp:Label ID=Name Runat=server Text=<%#
    DataBinderEval(ContainerDataItem Name) %>>
    </asp:Label>
    </ItemTemplate></asp:TemplateColumn>
    <asp:TemplateColumn HeaderText=類型><ItemTemplate>
    <asp:Label ID=Type Runat=server Text=<%#
    DataBinderEval(ContainerDataItem Type) %>>
    </asp:Label>
    </ItemTemplate></asp:TemplateColumn>
    <asp:TemplateColumn HeaderText=數據><ItemTemplate>
    <asp:Label ID=Data Runat=server Text=<%#
    DataBinderEval(ContainerDataItem Data) %>>
    </asp:Label>
    </ItemTemplate></asp:TemplateColumn>
    </Columns>
    </asp:DataGrid>
    <asp:Button id=ShowMsg runat=server Text=顯示消息></asp:Button>
    <asp:Label id=CheckMsg runat=server Width=%
    ForeColor=Red></asp:Label>
    </HTML>

[]  []  []  []  []  []  []  []  


From:http://tw.wingwit.com/Article/program/net/201311/15049.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.