问题描述
- ueditor post一个参数作为图片保存的文件夹
-
asp.net与ueditor,传一个参数作为图片保存的文件夹,如何post这个参数,如何读取这个参数var myeditor = UE.getEditor('txtContentbody', {
toolbars: [['Source']],
autoClearinitialContent: false,
elementPathEnabled: false,
initialFrameWidth: 500,
initialFrameHeight: 330,
autoHeightEnabled: false,
textarea: 'txtContentbody',
wordCount: false,
contextMenu: [],
imageUrl: "/ueupload/net/imageUp.ashx",
imagePath: "/ueupload/net/",
userid: "<%=CurrentUser.UserID %>", *** *//这里就是我上传的一个值* ***
imageManagerUrl: "/ueupload/net/imageManager.ashx",
imageManagerPath: "/ueupload/net/"
})
.
.
.
*** //这句是获取值,可是获取的是null ***string userid = context.Server.HtmlEncode(context.Request.Form["userid"]);
用户firefox查了一下,没有post userid这个参数
是不是还需要配置????
解决方案
http://blog.csdn.net/adensky/article/details/17961563
看这个。。
时间: 2024-12-01 06:01:31