我想上传多个file.as这个链接。 http://blueimp.github.io/jQuery-File-Upload/index.html
但是当我点击我的.cshtml中的添加文件时,我的网页上没有上传的预览显示。
请帮助。
<!-- The template to display files available for upload -->
<script id="template-upload" type="text/x-tmpl">
{% for (var i=0, file; file=o.files[i]; i++) { %}
<tr class="template-upload fade">
<td class="preview"><span class="fade"></span></td>
<td class="name"><span>{%=file.name%}</span></td>
<td class="size"><span>{%=o.formatFileSize(file.size)%}</span></td>
{% if (file.error) { %}
<td class="error" colspan="2"><span class="label label-important">{%=locale.fileupload.error%}</span> {%=locale.fileupload.errors[file.error] || file.error%}</td>
{% } else if (o.files.valid && !i) { %}
<td>
<div class="progress progress-success progress-striped active"><div class="bar" style="width:0%;"></div></div>
</td>
<td class="start">{% if (!o.options.autoUpload) { %}
<button class="btn btn-primary">
<i class="icon-upload icon-white"></i>
<span>{%=locale.fileupload.start%}</span>
</button>
{% } %}</td>
{% } else { %}
<td colspan="2"></td>
{% } %}
<td class="cancel">{% if (!i) { %}
<button class="btn btn-warning">
<i class="icon-ban-circle icon-white"></i>
<span>{%=locale.fileupload.cancel%}</span>
</button>
{% } %}</td>
</tr>
{%}%} 我在我的cshtmlpage的head部分添加此代码。 如何检查此代码是否有效?
答案 0 :(得分:0)
你必须错过cshtml文件中BeginForm()的ID属性。
尝试使用
@using(Html.BeginForm(&#34; YYYY&#34;,&#34; XXXX&#34;,FormMethod.Post,new {enctype =&#34; multipart / form-data&#34;,id =&#34; fileupload&#34;}))
此致 马来科塔里