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

ASP.NET項目開發指南:圖書的顯示(2)

2022-06-13   來源: .NET編程 

    圖書的顯示(

  【代碼說明】代碼第~行是GridView控件代碼~行用來顯示圖書的圖片從頁面的設計中可以看到有很多超鏈接控件每個控件實現不同的導航這些控件在GridView中都必須是模板列

  說明使用用戶控件uc需要在頁面的頭部添加注冊信息這裡沒有給出讀者可參考配書光盤中的源代碼

  ST_ClassProductaspxcs的主要代碼及其解釋

  在此只有一個Page_Load事件其代碼如程序所示

  程序  ST_ClassProductaspxcs

    public partial class ST_ClassProduct : SystemWebUIPage

    {

        public ST_BookBizST_Product st_product = new

                STGROUPST_BookBizST_Product()

        public string imgpath = ST_BookBizST_UtilityST_ImagePath;

        protected void Page_Load(object sender SystemEventArgs e)

        {

            if(!IsPostBack)

            {

                //取得分類ID

                int st_classid = ;

                try

                {

                    st_classid =

                        intParse(RequestQueryString[st_classid])

                }

                catch

                {

                    return;

                }

                //取出分類中的圖書並綁定

                DataSet ds = st_productGetProductByClassID(st_classid)

                if(ds!=null && dsTablesCount> &&

                    dsTables[]RowsCount>

                {

                    GridViewDataSource = ds;

                    GridViewDataBind()

                }

                else

                {

                    LabelVisible = true;

                }

            }

        }

    }

  【代碼說明】代碼第~行接收上個頁面傳過來的圖書類型ID然後根據這個ID讀出圖書的相關信息並將其綁定到控件GridView顯示出來代碼第~行用來綁定數據

       返回目錄ASPNET項目開發指南

       編輯推薦

       ASPNET MVC 框架揭秘

       ASPNET開發寶典

       ASP NET開發培訓視頻教程


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