-1
只是想知道,如果有可能不拆以下步驟...提前創建時爲控件分配屬性?
Button b = new Button()
{
// You can access Attributes here, but only get, not set.
ID = "btnExample",
Text = "Click Me"
};
b.Attributes.Add("onclick", "alert('hello, world')");
感謝。
你爲什麼不試試呢? – codingbiz