获取值后,如何将var带到ASP.net服务器端,以便在服务器端使用它?
function btnSelect_OnClick() {
var PCType;
if (document.getElementById('r1').checked) {
PCType = document.getElementById('r1').value);
}
}
答案 0 :(得分:1)
如果您不想使用AJAX解决方案,请考虑将值存储在HiddenField
中。
<强>的JavaScript 强>
function btnSelect_OnClick() {
var PCType = "";
if (document.getElementById('r1').checked) {
PCType = document.getElementById('r1').value);
}
document.getElementById('hfPCType').value = PCType;
}
<强> ASP.Net 强>
<asp:HiddenField runat="server" id="hfPCType" ClientIDMode="static" />
<强> C#强>
string PCType = hfPCType.Value;