2012-06-11 132 views
0

我正在使用asp.net網格視圖。更新asp.net網格視圖

我把一些SQL-Server存儲過程和

其連接到GridView:

    gvResults.DataSource = dr; 
        gvResults.DataBind(); 

我想打一個特定的列編輯。

如何將更新sp附加到視圖?

回答

0

試用的RowDataBound的處理程序的GridView:

 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 
    { 
    } 
} 

我寫了這個改變從特定的列數據源的響應更改爲超鏈接控件,你可以做你想做與列東西。