1. 上传大文件 http://www.cnblogs.com/lucslg/archive/2011/06/26/2090885.html

2. http://www.cnblogs.com/dingji/archive/2010/07/07/1772909.html

3. JQuery 上传插件Uploadify 使用详解 http://www.cnblogs.com/dingji/archive/2010/07/07/1772909.html

4. Uploadify 的官方网站  http://www.uploadify.com/

5. 探索Asp.net mvc 的文件上传(由浅入深) http://kb.cnblogs.com/page/77482/

 

6. mvc 3 例子 : 注意使用 new { enctype = "multipart/form-data" }

 

@using (Html.BeginForm("Create", "MerchandisePhoto", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
    @Html.ValidationSummary(true)
    <fieldset>
        <legend>MerchandisePhoto</legend>

                <div class="editor-label">
            @Html.LabelFor(model => model.Photo)
        </div>
        <div class="editor-field">
            <input type="file" name="file" />
        </div>

                <p>
            <input type="submit" value="Create" />
        </p>
    </fieldset>

 

相关文章:

  • 2021-12-17
  • 2022-03-10
  • 2021-07-29
  • 2021-07-10
  • 2021-11-01
  • 2022-01-05
  • 2021-07-22
猜你喜欢
  • 2021-07-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-24
  • 2018-04-27
相关资源
相似解决方案