Page_Load 调用函数,但没有任何反应
The Page_Load calls the function, but nothing happens
如标题所示,我遇到了这个问题:调用了函数,但它没有为我生成任何东西。
在有问题的函数中,我创建了一个 DataTable
和 DataRows
,随后将对其进行填充。在 Page_Load
中,我调用了该函数,但是当我在网页上启动调试时,什么也没有出现。错误可能在函数中,因为在调试时我注意到它被称为
public partial class ElencoProvince : System.Web.UI.Page
{
public void Page_Load(object sender, EventArgs e)
{
GetTable();
}
public static DataTable GetTable()
{
DataTable table = new DataTable();
table.Columns.Add("Nome", typeof(string));
table.Columns.Add("Cognome", typeof(string));
table.Columns.Add("Azienda", typeof(string));
table.Columns.Add("Provincia", typeof(string));
DataRow row = table.NewRow();
row["Nome"] = "Mario";
row["Cognome"] = "Rossi";
row["Azienda"] = "Pippo";
row["Provincia"] = "Viterbo";
table.Rows.Add(row);
return table;
}
}
谁能告诉我哪里错了?
要查看您的 table 您需要将其添加到 GridView
public void Page_Load(object sender, EventArgs e)
{
GridView gv = new GridView();
gv.ID = "gv" ;
gv.DataSource = GetTable();
gv.DataBind();
this.Controls.Add(gv);
}
Page_Load 是一个空函数,return 什么也没有。
要查看数据,您需要将其绑定到屏幕上的某个控件。
理想情况下,您还应该检查它是否回发。
如标题所示,我遇到了这个问题:调用了函数,但它没有为我生成任何东西。
在有问题的函数中,我创建了一个 DataTable
和 DataRows
,随后将对其进行填充。在 Page_Load
中,我调用了该函数,但是当我在网页上启动调试时,什么也没有出现。错误可能在函数中,因为在调试时我注意到它被称为
public partial class ElencoProvince : System.Web.UI.Page
{
public void Page_Load(object sender, EventArgs e)
{
GetTable();
}
public static DataTable GetTable()
{
DataTable table = new DataTable();
table.Columns.Add("Nome", typeof(string));
table.Columns.Add("Cognome", typeof(string));
table.Columns.Add("Azienda", typeof(string));
table.Columns.Add("Provincia", typeof(string));
DataRow row = table.NewRow();
row["Nome"] = "Mario";
row["Cognome"] = "Rossi";
row["Azienda"] = "Pippo";
row["Provincia"] = "Viterbo";
table.Rows.Add(row);
return table;
}
}
谁能告诉我哪里错了?
要查看您的 table 您需要将其添加到 GridView
public void Page_Load(object sender, EventArgs e)
{
GridView gv = new GridView();
gv.ID = "gv" ;
gv.DataSource = GetTable();
gv.DataBind();
this.Controls.Add(gv);
}
Page_Load 是一个空函数,return 什么也没有。 要查看数据,您需要将其绑定到屏幕上的某个控件。
理想情况下,您还应该检查它是否回发。