我正在使用 asp.net 网格视图。
我调用一些 sql-server 存储过程和
将其附加到gridView:
gvResults.DataSource = dr;
gvResults.DataBind();
我想让特定的列可编辑。
如何将更新 sp 附加到视图?
为 gridview 尝试 Rowdatabound 的处理程序:
protected void Gridview1_RowDataBound(object sender, GridViewRowEventArgs e)
{
try
{
HyperLink hlControl = new HyperLink();
hlControl.Text = "Info";
hlControl.NavigateUrl = e.Row.Cells[3].Text;
e.Row.Cells[3].Controls.Add(hlControl);
}
catch
{
}
}
我写这个是为了将特定列中数据源的响应更改为超链接控件,您可以对列执行任何操作。