本帖最后由 马林雷 于 2014-6-11 13:27 编辑
sender是事件发生的对象,这里就是linkButton
e包含事件数据,对于需要返回很多值得时候就需要用e包含的事件数据!就像从detalis有很多值得时候,并且里面只能是一些从数据库返回的数据 你点击从sender上能获取吗?需要的是对于这个事件绑定protected void dtList1_ItemCommand1(object source, DataListCommandEventArgs e)
{
if (e.Item.ItemType != null || e.Item.ItemIndex >= 0)
{
if (e.CommandName == "DELETE")
{
if (OperClass.DelOrder(Convert.ToInt32(e.CommandArgument)) == false)
{
ClientScript.RegisterStartupScript(this.GetType(), "信息更新成功", "<script>window.location.href=document.URL;</script>");
}
}
}
}
|