各位大侠给看看这两句有什么错误?急!急!在线等!非常感谢!!!

2024-12-15 11:46:33
推荐回答(2个)
回答1:

//查询字符串不需要单引号
string url = string.Format("DefectImp.aspx?RepairId={0}&CheckId={1}", dt.Rows[0]["RepairId"].ToString(), dt.Rows[0]["CheckId"].ToString());
this.Response.Write(" ");

回答2:

查询字符串不需要单引号
string url = "DefectImp.aspx?RepairId=" + dt.Rows[0]["RepairId"].ToString() + "&CheckId="+dt.Rows[0]["CheckId"].ToString();