我从查询字符串获取应用程序名称。
我有GridView控件,可用于插入一些任务。我必须根据我在查询字符串中获得的应用程序名称插入任务。我在GridView页脚中插入Record。由于应用程序名称来自Querystring,我想将其显示为GridView页脚中的一个项目。如何在Page_Loading time时执行此操作?
感谢。
答案 0 :(得分:1)
您需要绑定到RowDataBound事件,然后检查事件以查看它是否是这样的页脚:
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.Footer)
{
e.Row.Cells[0].Text = Request["ApplicationName"];
}
}