ueditor赋值
今天搞了好就终于到⼀个解决办法:分享如下:
我介绍的是从数据库赋值
后台代码:
this.lable1.Text = dr["字段名"].ToString();//对前台Id为lable的控件赋值
前台代码:
<asp:Label ID="editoraa" runat="server" Visible="false" Text=""></asp:Label>
<script type="text/plain" id="editor"><%=this.editoraa.Text%></script>//此处获取lable控件的值
<script type="text/javascript">
var editor = new baidu.editor.ui.Editor({
UEDITOR_HOME_URL: '',
autoClearinitialContent: false,//点击编辑框的时候值不会消失
textarea: 'editorcontent'
});
</script>
如果要取值的话在后台:string aa= Request.Params["editorcontent"].ToString();
就OK!!!
配置:在editor_config.js⽂件修改
var tmp = window.location.pathname;editorjs
//URL = window.UEDITOR_HOME_URL ¦¦ tmp.substr(0, tmp.lastIndexOf("\/") + 1).replace("_examples/", "").replace("website/", ""); //这⾥你可以配置成ueditor⽬录在您⽹站的相对路径或者绝对路径(指以http开头的绝对路径)
URL = "/UEditor/ueditor/";
/**
常见错误:从客户端(editorValue=”<p>欢迎使⽤ueditor!</p>”)中检测到有潜在危险的 Request.Form 值。
解决⽅法:fig⽂件
<system.web>
<pages validateRequest="false" theme="Default"/>
<httpRuntime requestValidationMode="2.0" />
</system.web>
本⼈菜鸟⼀个,⽼鸟们有好的⽅法请赐教
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论