protected void Page_Load(object sender, EventArgs e)
{
Button quote = new Button();
Button reply = new Button();
Button edit = new Button();
Label UsersMessage = new Label();
UsersMessage.Text = "Users Message: question was submitted";
Table tabl = new Table();
TableRow tablRow=new TableRow();
TableCell tablCell=new TableCell();
tablCell.Controls.Add(quote);
tablCell.Controls.Add(reply);
tablCell.Controls.Add(edit);
tablCell.Controls.Add(UsersMessage);
tablRow.Cells.Add(tablCell);
tabl.Rows.Add(tablRow);
}
我想添加一個表格,其中包含按鈕和標籤的單元格。爲什麼沒有添加,當我啓動頁面? (當我查看它時,源代碼中沒有添加任何內容)將控件添加到頁面?
類型「按鈕」控制「ctl02」必須放在與RUNAT =服務器的表單標籤內。 - 給我一個例外 – 2011-05-08 07:37:14
@Dmitry,是真的,因爲表中有按鈕,它應該被添加到頁面的表格而不是頁面本身。回答更新,爲錯誤抱歉。 – 2011-05-08 07:39:22
謝謝,你的回答解決了這個問題。關於如何控制我在表格單元格內添加的所有項目的位置的任何想法。我希望按鈕出現在單元格的底部,並在單元格頂部的標籤 – 2011-05-08 07:45:21