请教如何获取FCKeditor内上传图片的路径ASP

请教如何获取FCKeditor内上传图片的路径ASP,第1张

用正则表达式。

string fckStr = FCKeditor1Value;

MatchCollection matchs = RegexMatches(fckStr, @"<img([^\/>]+)src=""([^""]+)""([^\/>]+)\/>", RegexOptionsIgnoreCase);

string imgurl = "";

//if (matchsCount > 0)

//{

// Match imga = matchs[0];

//}

foreach (Match imga in matchs)

{

imgurl = imgaGroups[2]Value;

break;

}

<asp:TextBox ID="txt_PicUrl_Insert" runat="server" MaxLength="100" Width="280px" CssClass="txt_box_big"></asp:TextBox> 

<input id="btn_OpenFileBrowser_Insert" onclick="openFileBrowser('Fckeditor/editor/filemanager/browser/default/browserhtmlType=Image&Connector=connectors/aspx/connectoraspx',800,600);"

type="button" value="浏览服务器" class="btn_big">

======================================================

文本框txt_PicUrl_Insert 就是文件路径里,关键是把你的Fckeditor路径配置好!其实测一下就行, 就这样把 不会q我把

祝你好运

$filePath 应该是上传的临时文件吧,然后将$filePath,这个文件移动到 $uploadPath,$uploadPath,应该就 你已经上传的的路径!包含文件的名称。

以上就是关于请教如何获取FCKeditor内上传图片的路径ASP全部的内容,包括:请教如何获取FCKeditor内上传图片的路径ASP、如何获取 ckeditor 上传图片路径、PHP怎么上传图片路径,怎么获取图片路径等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9737170.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-01
下一篇 2023-05-01

发表评论

登录后才能评论

评论列表(0条)

保存