protected void GridViewSearchResult_RowCreated(object sender,  GridViewRowEventArgs e)
     {
         if (e.Row.RowType == DataControlRowType.EmptyDataRow)
         {
             ((Label)(e.Row.FindControl("LabelKeyword"))).Text = Request ["keyword"];
         }
     }