内容中的HTML标记

时间:2012-07-31 11:26:13

标签: asp.net

我正在名为tbljobs的cloumn上名为jobdescription的表上实施全文搜索。在前端我在描述中得到了html标签。我正在GridViewGridview RowDataBound上显示记录,我正在解码文本。我在Gridview的{​​{1}}事件中使用了以下代码:

RowDataBound

但没有任何作用.. !!

1 个答案:

答案 0 :(得分:0)

使用DataRowView获取数据...

protected void GridNewlyPostedJobs_RowDataBound(object sender, GridViewRowEventArgs e) 
{ 
   DataRowView rowView = (DataRowView)e.Row.DataItem; 
   if (e.Row.RowType == DataControlRowType.DataRow) 
   {  
     string decodedText = HttpUtility.HtmlDecode(rowView["jobdescription"]);             
     ((Label)e.Row.FindControl("lblJobDescription")).Text = decodedText;         
   }     
}