繁体   English   中英

在datagridview c# asp.net中显示TinyMCE内容

[英]Display TinyMCE content in datagridview c# asp.net

我尝试使用AddMemo.aspx页面中的 multiLine 属性将 TinyMCE 添加到我的文本框,并且成功了。 这是我页面中的 javascript sintax:

<script type="text/javascript">
   tinyMCE.init({
        mode : "textareas",
        theme : "advanced",
        plugins : "safari,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,imagemanager,filemanager",
        theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect",
        theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
        theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
        theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,spellchecker,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,blockquote,pagebreak,|,insertfile,insertimage",
        theme_advanced_toolbar_location : "top",
        theme_advanced_toolbar_align : "left",
        theme_advanced_statusbar_location : "bottom",
        theme_advanced_resizing : false,
        template_external_list_url : "js/template_list.js",
        external_link_list_url : "js/link_list.js",
        external_image_list_url : "js/image_list.js",
        media_external_list_url : "js/media_list.js"
    });
</script>

这是我们的图片:

在此处输入图片说明

当点击提交按钮时,它将被保存到数据库中。 我不知道如何在HistoryMemo.aspx 中向我的 DataGridview(我使用绑定源)显示 TiniMCE 内容语法。 结果如下: 在此处输入图片说明

任何人都可以帮助我将 TiniMCE 内容从数据库显示到我的数据网格视图,我会很感激吗?

我相信您需要使用@Html.Raw来阻止 .NET 转义您的 HTML。

如果您想将 TinyMCE 内容从数据库显示到您的 datagridview 只需将此代码添加到您的 datagridview 页面以解码 datagridview 的所有列中的 html:

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
        {
            if (e.Row.RowType == DataControlRowType.DataRow)
            {
                for (int i = 0; i < e.Row.Cells.Count; i++)
                {
                    string encoded = e.Row.Cells[i].Text;
                    e.Row.Cells[i].Text = Context.Server.HtmlDecode(encoded);
                }
            }
        }

如果您想解码到特定列(例如第一列),请添加以下代码:

if (e.Row.RowType == DataControlRowType.DataRow)
{
  string decodedText = HttpUtility.HtmlDecode(e.Row.Cells[0].Text);
  e.Row.Cells[0].Text = decodedText;
}

您可以根据需要进行自定义。

SqlDataReader 帮你展示没有html标签的内容

string strQuery = "SELECT * from table";
using (SqlConnection myCon = new SqlConnection(con))
{
    using (SqlCommand cmd = new SqlCommand(strQuery, myCon))
    {
        myCon.Open();
        using (SqlDataReader sdr = cmd.ExecuteReader())
        {
            GridView1.DataSource = sdr;
            GridView1.DataBind();
            sdr.Close();
        }
        myCon.Close();
    }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM