目的: コード ビハインド クラスではなく、別のクラスの HTML Web ページにテーブルを表示したい。またはコードビハインドクラスの代わりに別のクラスを呼び出す方法は?
「すべてのコードパスが値を返すわけではない」というテーブルセルのエラー。
ミニコードは以下にあります
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;
}