我正在名为tbljobs
的cloumn上名为jobdescription
的表上实施全文搜索。在前端我在描述中得到了html标签。我正在GridView
和Gridview
RowDataBound
上显示记录,我正在解码文本。我在Gridview
的{{1}}事件中使用了以下代码:
RowDataBound
但没有任何作用.. !!
答案 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;
}
}