GridView中動態(tài)設(shè)置CommandField是否可用或可見的小例子_.Net教程

      編輯Tag賺U幣

      推薦:ASP.NET頁面間數(shù)據(jù)傳遞的幾種方法介紹
      在ASP.NET中,頁面間數(shù)據(jù)傳遞的方法有很多。下面為大家總結(jié)一下,頁面間數(shù)據(jù)傳遞的方法,來看作者的分析。

      復(fù)制代碼 代碼如下:www.wf0088.com

      protected void gvMaterial_RowDataBound(object sender, GridViewRowEventArgs e)
      {
      if (e.Row.RowType == DataControlRowType.DataRow || e.Row.RowType == DataControlRowType.Header)
      {
      e.Row.Cells[0].Visible = false;

      }
      if (e.Row.RowType == DataControlRowType.DataRow)
      {
      e.Row.Cells[1].Text = (gvMaterial.PageIndex * gvMaterial.PageSize + e.Row.RowIndex + 1).ToString();
      string price;
      try //讓編輯功能在特定條件下可以用
      {
      price = ((TextBox)e.Row.Cells[4].Controls[0]).Text;//點編輯的時候用
      }
      catch
      {
      price = e.Row.Cells[4].Text; //出始時用
      }
      if (price == "" || price == " ")
      {
      e.Row.Cells[7].Controls[0].Visible = false;
      }
      else
      {
      e.Row.Cells[7].Controls[0].Visible = true;
      }
      }
      }

      分享:Asp.net中的mail的發(fā)送
      現(xiàn)在的郵件發(fā)送大多數(shù)需要驗證,我寫這篇文章是希望對大家開發(fā)項目有所幫助,也希望大家能給我提點意見。 把jmail引用到工程中,加入jmail的命名空間,在這里我將引用jmail包的messageclass類。 logging屬性:是否使用日志 silent屬性:如果設(shè)置為true,jmail不會拋出例

      來源:模板無憂//所屬分類:.Net教程/更新時間:2013-05-09
      相關(guān).Net教程