各位大侠给看看这两句有什么错误?急!急!在线等!非常感谢!!!
发布网友
发布时间:2024-09-24 18:32
我来回答
共2个回答
热心网友
时间:2024-09-24 19:31
//查询字符串不需要单引号
string url = string.Format("DefectImp.aspx?RepairId={0}&CheckId={1}", dt.Rows[0]["RepairId"].ToString(), dt.Rows[0]["CheckId"].ToString());
this.Response.Write("<script>window.open('" + url + "','win','fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=700,height=500,top=200,left=200');</script> ");
热心网友
时间:2024-09-24 19:31
查询字符串不需要单引号
string url = "DefectImp.aspx?RepairId=" + dt.Rows[0]["RepairId"].ToString() + "&CheckId="+dt.Rows[0]["CheckId"].ToString();