更新:
在我的代码隐藏代码中,我有这样的公共变量和 assing
public string Id { get { return Request.QueryString["id"].ToString(); } }`
在 .aspx 页面中我试图访问
$(this).attr("EmployeeId", Id);
得到错误名称
'Id' does not exist in the current context
结束更新
我有两个 aspx 页面:
1) employee.aspx
2) employee_detail.aspx
如何将动态 id 从一个页面传递到另一个页面
以下代码在employee.aspx
页面中
//more code here..
//but to relvant to my question is here...
var submitButton = function() {
//more code here...
if(employeeId != ""){ //redirecting here...
window.location.href = "employee_detail.aspx";
}
}
所以在employee_detail.aspx
页面中我有一个 jquery 函数,目前我正在对 id 进行硬编码,如下所示:
<script type="text/javascript">
$(document).ready(function () {
var id = 'A42345'; //hardcoded....
$(this).attr("EmployeeId", id);
</script>
所以我的问题是,我正在寻找一种方法来传递employee.aspx
和接收idemployee_detail.aspx
我想过这样做,但出于安全原因,我不想在 url 中公开 id:
window.location.href = "mypage.aspx?id = " + id;