使用資料來源從DropdownList 中取得選取值
在ASP.NET 中使用具有資料來源的DropdownList 時,了解如何檢索非常重要使用者的選擇。
要為 DropdownList 建立資料來源,請考慮三個關鍵Factors:
例如,要將DropdownList 綁定到儲存在「dt」中的DataTable:
DropDownList1.DataTextField = "QUIZ_Name"; DropDownList1.DataValueField = "QUIZ_ID"; DropDownList1.DataSource = dt; DropDownList1.DataBind();
要處理使用者的選擇,請設定AutoPostBack="true" 並使用SelectedIndexChanged事件:
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e) { string strQUIZ_ID = DropDownList1.SelectedValue; string strQUIZ_Name = DropDownList1.SelectedItem.Text; // Your code based on user selection... }
執行下列步驟,您可以從資料來源並回應所選值。
以上是如何從具有資料來源的 ASP.NET DropdownList 中取得所選值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!