日期:2014-05-17  浏览次数:20534 次

html标记<变成&lt??
我在后台写的是“<”,然后把它输出到前台就变成"&lt"了~~这个问题怎么解决啊?

------解决方案--------------------
绑定控件,设置HtmlEncode="false"即可
------解决方案--------------------
引用:
你使用什么控件显示的?

HTMLDECODE()

------解决方案--------------------
<asp:BoundField HtmlEncode="false"
------解决方案--------------------
server.htmldecode();
------解决方案--------------------
本帖最后由 net_lover 于 2011-11-03 11:32:54 编辑
这样  

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
  {
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
      e.Row.Cells[0].Text = Server.HtmlDecode(e.Row.Cells[0].Text);
    }
  }


<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
  <title></title>
</head>
<body>
  <form id="formd1" runat="server">
  <asp:GridView ID="GridView1" runat="server" OnRowDataBound="GridView1_RowDataBound">
  </asp:GridView>
  </form>
</body>
</html>