[YouTube影片] 動態加入 ASP.NET 控制項 與 事件 / Controls.Add()

動態加入 ASP.NET 控制項 與 事件 (附上YouTube教學影片)

.Controls.Add()

VB-- AddHandler Button1.Click, AddressOf myEventHandler
C#-- Button1.Click += new System.EventHandler(this.myEventHandler);

 

...繼續閱讀 »

Button_Click事件裡面的 參數 sender,以清單控制項為例

Q : 畫面上有兩個清單控制項 DropDownList 與 RadioButtonList
     點選任何一個,都可以指向同一個事件來作
     避免重複寫兩個事件,程式碼都一樣,只是在改「控制項ID」

...繼續閱讀 »

[FAQ]錯誤訊息-- 不可以在 DropDownList 中選取多個項目 (重新DataBinding後,跳回第一個選項)

摘要:[FAQ]錯誤訊息-- 不可以在 DropDownList 中選取多個項目 (重新DataBinding後,跳回第一個選項)
Cannot have multiple items selected in a DropDownList

...繼續閱讀 »

[習題]輸入自己的生日(年/月/日)#3 -- 日曆(Calendar)控制項的時光跳躍,一次跳回五年、十年前?--PostBack發生的錯誤

摘要:[習題]輸入自己的生日(年/月/日)#3 -- 日曆(Calendar)控制項的時光跳躍,一次跳回五年、十年前?--PostBack發生的錯誤

...繼續閱讀 »

UC(使用者控制項, User control) 與 輸出快取(Output Cache) -- PartialCachingAttribute類別

摘要:UC(使用者控制項, User control) 與 輸出快取(Output Cache) -- PartialCachingAttribute類別

四個屬性與 @outPutCache 指示詞互相對應 --
duration
varyByParams
varyByControls
varyByCustom

...繼續閱讀 »