2010-12-11 63 views
0

可能重複:
How to disable and uncheck the checkbox values from database fields..VB.NET如何以檢索在文本框中dropdownlist1項目爲1,2,3,4 VB.NEt

我有asp.net TextBox1中,7個複選框和dropdownlist1在我的vb.net網頁表單....

在dropdownlist1 ...我有以下項目......作爲,

1,2 3,5 6,7

我想在頁面加載,然後在TextBox1中的文本將根據dropdownlist1

是1,2,3,4,5,6,7 而checbox1,checkbox2,checkbox3,checkbox4,checkbox5,checkbox6,checkbox7將被禁用。

+1

請永遠不要和曾經問相同的: http://stackoverflow.com/questions/4416931/how-to-disabled-and-uncheck-the-checkbox-values-from-database- fields-vb-net和http://stackoverflow.com/questions/4416685/i-have-retrieve-checkbox-checked-value-in-textbox-as-1-2-3-4-5-so-on-和插件 – 2010-12-11 22:41:15

回答

0

這將設置textbox1的Text屬性的值爲所有dropdownlist1的項目的Text屬性(或者也可以使用Value)。我不確定你需要什麼複選框。

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load 
    For Each li As ListItem In dropdownlist1.Items 
     textbox1.Text += li.Text 'or li.Value 
    Next 
End Sub 
相關問題