星期日, 1月 31, 2010

asp.net 不可以在 DropDownList 中選取多個項目。

今天遇到這個奇怪的bug,
不可以在 DropDownList 中選取多個項目。
上網查了一下,蠻多人有遇過這樣的問題:
不可以在 DropDownList 中選取多個項目 ?
OOP Pass by Value OR Reference ?
不過我的情形跟上述的不太一樣,
原來是我在DropDownList的item中已指定Selected="True"
又在程式指定一次
                if (hwCategory == "True")
                {
                    this.ddlPaidLimit.Items[1].Selected = true;
                }
                else
                {
                    this.ddlPaidLimit.Items[0].Selected = true;
                }
結果就發生這樣的錯誤,拿掉Selected="True"即可解決。


 

沒有留言:

張貼留言

留個話吧:)

其他你感興趣的文章

Related Posts with Thumbnails