私のJavaScriptコード
$().ready(function () {
$.ajax({
type: "POST",
url: "../WebService.asmx/GetDistricts",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
BindDist(msg.d);
}
});
});
なので
function BindDist(msg) {
$.each(msg, function () {
$("#dropDist").append($("<option></option>").val(this['DistrictId']).html(this['Name']));
});
}
サーバー側では、dropDist.selectedItem. で値を取得したいのですが、その方法で値を取得できません。
int DistrictId = Int32.Parse((dropDist.SelectedValue).ToString());
サーバー側でドロップダウンで選択した値を取得する方法を教えてください。