コントロールと<asp:menu/>
非表示フィールドがあります。現在、jQuery を使用して非表示フィールドの値を変更しています。コードは:-
$(function() {
$(".primaryStaticMenu tr,td").each(function(index) {
$(this).click(function() {
if ($(this).attr("title") != "undefined"
&& $(this).attr("title").length > 0) {
document.getElementById('ctl00_Hidden_Master_Location').value = $(this).attr("title");
alert(document.getElementById('ctl00_Hidden_Master_Location').value);
//return false;
}
});
});
});
更新された値を取得するサーバー側のコードは次のとおりです。
string Get_cng_value = Hidden_Master_Location.Value;
でも毎回上映Hidden_Master_Location.Value
。null
コードビハインドから非表示フィールドの更新された値を取得する方法を教えてください。