我需要在我的表单中添加以下字段
<input type="file" class="input-file" />
我创建模型并描述这个字段(最后一个字段)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace CorePartners_Site2.Models
{
public class FeedbackForm
{
public string Name { get; set; }
public string Email { get; set; }
public string Phone { get; set; }
public string Company { get; set; }
public string AdditionalInformation { get; set; }
public HttpPostedFileBase ProjectInformation { get; set; }
}
}
并创建
@Html.TextBox(null, null, new { type="file", @class="input-file" })
但它不起作用,我得到了一些例外。怎么了?