by 清泉
29. 八月 2008 11:45
1修改editfunc.js
function createImg(){
var sPhoto=showModalDialog("up_load.asp","", "font-family:Verdana; font-size:12; status:no; unadorned:yes; scroll:no; resizable:yes;dialogWidth:330px; dialogHeight:250px");
if ((sPhoto!=null) && (sPhoto!="http://")){
format("InsertImage", sPhoto);
}
}
2修改upload.asp
<script language=JavaScript>
<!--
function M(p_e) {
window.returnValue = p_e;
window.close();
}
-->
</script>
<iframe src=upfile.asp width=100% height=100px frameborder=0></iframe>
3.修改upfile.asp
file.SaveAs Server.mappath(filename) '保存文件
Response.Write "<script>parent.parent.M('"&filename&"');</script>"