0

TableCell と GridViewRow を使用してコード ビハインドでグリッド ビューを作成しています。

データはデータベース テーブルから取得されます。

私のコードは次のとおりです。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.SqlClient;

public partial class gv1 : System.Web.UI.Page
{
    SqlConnection cn;
    SqlCommand cmd;
    DataSet ds;
    SqlDataAdapter da;

   protected void Page_Load(object sender, EventArgs e)
  {
     cn = new SqlConnection("Data Source=AMIR-PC\\MOHEMMAD;Initial Catalog=CRM_InvestPlus;Integrated Security=True");

  }
  protected void Button1_Click(object sender, EventArgs e)
 {
    cn.Open();
    cmd = new SqlCommand("Select * from Customer_Master", cn);
    da = new SqlDataAdapter(cmd);
    ds = new DataSet();
    da.Fill(ds);
    cn.Close();

    GridView gr1 = new GridView();
    Table t = new Table();
    gr1.Controls.Add(t);

        for (int i = 0; i < 6; i++)
       {
           GridViewRow row = new GridViewRow(i, i, DataControlRowType.DataRow, DataControlRowState.Normal);
           TableCell cell1 = new TableCell();
           TableCell cell2 = new TableCell();
           TableCell cell3 = new TableCell();

           cell1.Text = ds.Tables[0].Rows[i][0].ToString();
           cell2.Text = ds.Tables[0].Rows[i][1].ToString();
           cell3.Text = ds.Tables[0].Rows[i][2].ToString();
           row.Cells.Add(cell1);
           row.Cells.Add(cell2);
           row.Cells.Add(cell3);

            gr1.Controls[0].Controls.AddAt(i, row);    

        }
        form1.Controls.Add(gr1);
    }
}

Gridview は正常に生成されます。しかし、私の問題は、Cell3 の代わりに FileUploadControl を表示することです (つまり、Cell3 に FileUploadControl を配置したい)

助けてください..

前もって感謝します...

4

1 に答える 1

0

これを試して:

FileUpload fileUpload = new FileUpload();
cell3.Controls.Add(fileUpload);
于 2013-02-07T08:13:57.040 に答える