ASP.NET下GridView中设置链接

在GridView中常常要设置链接,下面局里说明。

前台GridView代码如下:

                          
                            
                                
                                
                                
                                                               
                                
                                
                                                        
                            
                          

后台代码如下:

 protected void grid_CameraInfo_RowDataBound(object sender, GridViewRowEventArgs e)
        {
            if (e.Row.RowType == DataControlRowType.DataRow)
            {               
                HyperLink timeHref = e.Row.Cells[0].Controls[0] as HyperLink;
                string routeName =  DataBinder.Eval(e.Row.DataItem, "ROUTE_ID").ToString();

                timeHref.NavigateUrl = "Monitor.aspx?route=" + routeName;
            }
        }
我们看到一种是直接在前台代码中写好的。一种是通过后台设置的。

你可能感兴趣的:(ASP.NET,asp.net,gridview,hyperlink)