目的:想要在另一个类而不是代码隐藏类的 html 网页上显示表格。或者如何调用另一个类而不是代码隐藏类?
表格单元错误,“并非所有代码路径都返回值”。
迷你代码在下面
public class SQLscr : Page
{
protected void creattable(object sender, EventArgs e)
{
Table Table1 = new Table();
TableRow r = new TableRow();
TableCell tempc = new TableCell();;
tempc = CreateaTable.tablecell(tempc);
r.Cells.Add(tempc);
Table1.Rows.Add(r);
}
}
public class CreateaTable
{ public static TableCell tablecell(TableCell c) {
SqlDataReader myReader = myCommand.ExecuteReader();
while (myReader.Read()){
c.Controls.Add(...);
return c;
}