所有!
我有一个在事件编辑(按钮编辑)中创建会话的页面。此页面为UsersNDR.aspx
protected void btnEdit_OnClick(object sender, EventArgs e)
{
ImageButton btn = (ImageButton)sender;
GridViewRow row = (GridViewRow)btn.NamingContainer;
string UserName = row.Cells[0].Text;
Session["UserEdit"] = UserName;
Response.Redirect("EditUser.aspx");
}
在EdistUser.aspx,Page_Load()中,我读了这个Session以在SQL Server中进行咨询。
string UserEdit = (string)(Session["UserEdit"]);
在LocalHost中,此页面在Chrome和IE9中无问题。 但是在IIS中,wotk在Chrome中,但在IE9中没有。
The parameterized query '(@UserName nvarchar(4000))SELECT UserName,DisplayName,Email,Prof' expects the parameter '@UserName', which was not supplied.
这是什么问题?