閱讀201 返回首頁    go 技術社區[雲棲]


DataTable綁定到GridView時,RowDataBound事件

        protected void EgvPhotoAdvertisement_RowDataBound(object sender, GridViewRowEventArgs e)
        {
            if (e.Row.RowType == DataControlRowType.DataRow)
            {
                System.Data.DataRowView dt = (System.Data.DataRowView)e.Row.DataItem; 
                string imgPath = dt.DataView[e.Row.RowIndex]["UploadFiles"].ToString();
                ... ...
            }
        }

最後更新:2017-04-02 06:52:16

  上一篇:go struts2的Action傳參總結
  下一篇:go 天氣預報 獲取九天係統時間的代碼