string file_path_virtual = "/WebsitesNew/";
string file_path = Server.MapPath(file_path_virtual);
Response.Write("physics path:"+file_path+"<br>");
get result is:
physics path:\\192.168.139.21\home\
string file_path_virtual = "~/WebsitesNew/";
string file_path = Server.MapPath(file_path_virtual);
Response.Write("physics path:"+file_path+"<br>");
get result is:Editor1.SetSecurityImageGalleryPath("~/WebsitesNew");
physics path:E:\mysite\Saber\WebsitesNew
the right is Editor1.SetSecurityImageGalleryPath("/WebsitesNew");
I can not resolve the problem,How can i do make the control can work,When i set the virtual point to physics is \\192.168.139.21\home\ virtual path name is "WebsitesNew", My iis Set secreen capture