Dim zonename As String = DropDownList1.SelectedItem.Text
ドロップダウンリストの最初の値を常に表示します
参考にバインディングしてみるis not postback
ページ読み込み内でバインドすると、ドロップダウン リストの最初の値が常に取得されます。
private void Page_Load()
{
if (!IsPostBack)
{
//bind your dropdown here
}
}
VB で
Sub Page_Load
If Not IsPostBack
' bind your dropdown list
Validate()
End If
End Sub
使用できる接続文字列の保存 web.config ファイル
http://www.connectionstrings.com/Articles/Show/store-connection-string-in-web-config
page.ispostback を使用する
ページ読み込みイベント内...
if NOT page.isPostBack Then
Dim zonename As String = DropDownList1.SelectedItem.Text
End if