在我的 asp.net Web 应用程序中,我需要捕获客户端时间并将其存储在数据库中。为此,我在主人的头脑中编写了以下脚本:
{
function checkClientTimeZone() {
// Set the client time zone
var dt = new Date();
alert(dt.toTimeString());
document.getElementById("HiddenField1").value = dt.toTimeString();
}
window.onload = checkClientTimeZone;
</script>
}
母版页上已声明隐藏字段的位置 在每次加载页面时,脚本运行良好并提醒客户端时间。但是当我在内容页面中引用隐藏字段的值时,它仍然反映默认值“Hi”。有人可以帮忙吗..