在Asp.net Mvc 3中使用swfupload
时间:2011-04-07 来源:玄歌
一、无法在iis下显示上传按钮的问题
注意在js中,路径要绝对按照下面的方式书写:
flash_url: '@Url.Content("~/Common/SwfUpload/swfupload.swf")',
button_image_url: '@Url.Content("~/Common/SwfUpload/TestImageNoText_65x29.png")',
如果写成
button_image_url: '/Common/SwfUpload/TestImageNoText_65x29.png")',
则在iisexpress中调试能够通过,但在iis中运行的时候会出现错误,原因是前者会将虚拟路径加上,后者不会。
最终造成的问题是:1、上传按钮不会显示;2、当然也无法点击打开文件对话框,因为swf文件也无法载入。
二、上传路径的写法:
三、后台代码的书写:
相关阅读 更多 +