Yanıtlar:
HTML Yükleme Dosyası ASP MVC 3.
Model : ( FileExtensionsAttribute'un MvcFutures'da mevcut olduğunu unutmayın. Dosya uzantılarını istemci tarafında ve sunucu tarafında doğrular. )
public class ViewModel
{
[Required, Microsoft.Web.Mvc.FileExtensions(Extensions = "csv",
ErrorMessage = "Specify a CSV file. (Comma-separated values)")]
public HttpPostedFileBase File { get; set; }
}
HTML Görünümü :
@using (Html.BeginForm("Action", "Controller", FormMethod.Post, new
{ enctype = "multipart/form-data" }))
{
@Html.TextBoxFor(m => m.File, new { type = "file" })
@Html.ValidationMessageFor(m => m.File)
}
Denetleyici eylemi :
[HttpPost]
public ActionResult Action(ViewModel model)
{
if (ModelState.IsValid)
{
// Use your file here
using (MemoryStream memoryStream = new MemoryStream())
{
model.File.InputStream.CopyTo(memoryStream);
}
}
}
Ayrıca kullanabilirsiniz:
@using (Html.BeginForm("Upload", "File", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
<p>
<input type="file" id="fileUpload" name="fileUpload" size="23" />
</p>
<p>
<input type="submit" value="Upload file" /></p>
}
Aynı soruyu bir süre önce sormuştum ve Scott Hanselman'ın gönderilerinden birine rastladım:
Testler ve Modeller dahil ASP.NET MVC ile HTTP Dosya Yüklemeyi Uygulama
Bu yardımcı olur umarım.
Ya da düzgün bir şekilde yapabilirsin:
HtmlHelper Extension sınıfınızda:
public static MvcHtmlString FileFor<TModel, TProperty>(this HtmlHelper<TModel> helper, Expression<Func<TModel, TProperty>> expression)
{
return helper.FileFor(expression, null);
}
public static MvcHtmlString FileFor<TModel, TProperty>(this HtmlHelper<TModel> helper, Expression<Func<TModel, TProperty>> expression, object htmlAttributes)
{
var builder = new TagBuilder("input");
var id = helper.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldName(ExpressionHelper.GetExpressionText(expression));
builder.GenerateId(id);
builder.MergeAttribute("name", id);
builder.MergeAttribute("type", "file");
builder.MergeAttributes(new RouteValueDictionary(htmlAttributes));
// Render tag
return MvcHtmlString.Create(builder.ToString(TagRenderMode.SelfClosing));
}
Bu hat:
var id = helper.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldName(ExpressionHelper.GetExpressionText(expression));
Listelerde ve diğer şeylerde bildiğiniz modele özgü bir kimlik oluşturur. model [0]. İsim vb.
Modelde doğru mülkü oluşturun:
public HttpPostedFileBase NewFile { get; set; }
Ardından, formunuzun dosya göndereceğinden emin olmanız gerekir:
@using (Html.BeginForm("Action", "Controller", FormMethod.Post, new { enctype = "multipart/form-data" }))
O zaman işte yardımcınız:
@Html.FileFor(x => x.NewFile)
Paulius Zaliaduonis'in cevabının geliştirilmiş versiyonu:
Doğrulamanın düzgün çalışmasını sağlamak için Modeli şu şekilde değiştirmem gerekiyordu:
public class ViewModel
{
public HttpPostedFileBase File { get; set; }
[Required(ErrorMessage="A header image is required"), FileExtensions(ErrorMessage = "Please upload an image file.")]
public string FileName
{
get
{
if (File != null)
return File.FileName;
else
return String.Empty;
}
}
}
ve görünüm:
@using (Html.BeginForm("Action", "Controller", FormMethod.Post, new
{ enctype = "multipart/form-data" }))
{
@Html.TextBoxFor(m => m.File, new { type = "file" })
@Html.ValidationMessageFor(m => m.FileName)
}
@Serj Sagan'ın sadece dizelerle çalışan FileExtension özelliği hakkında yazdıkları için bu gereklidir.
Kullanmak için BeginForm
, işte kullanmanın yolu:
using(Html.BeginForm("uploadfiles",
"home", FormMethod.POST, new Dictionary<string, object>(){{"type", "file"}})
Bu aynı zamanda çalışır:
Model:
public class ViewModel
{
public HttpPostedFileBase File{ get; set; }
}
Görünüm:
@using (Html.BeginForm("Action", "Controller", FormMethod.Post, new
{ enctype = "multipart/form-data" }))
{
@Html.TextBoxFor(m => m.File, new { type = "file" })
}
Denetleyici eylemi:
[HttpPost]
public ActionResult Action(ViewModel model)
{
if (ModelState.IsValid)
{
var postedFile = Request.Files["File"];
// now you can get and validate the file type:
var isFileSupported= IsFileSupported(postedFile);
}
}
public bool IsFileSupported(HttpPostedFileBase file)
{
var isSupported = false;
switch (file.ContentType)
{
case ("image/gif"):
isSupported = true;
break;
case ("image/jpeg"):
isSupported = true;
break;
case ("image/png"):
isSupported = true;
break;
case ("audio/mp3"):
isSupported = true;
break;
case ("audio/wav"):
isSupported = true;
break;
}
return isSupported;
}
Bu biraz zor sanırım, ancak doğru doğrulama özelliklerinin uygulanmasına neden oluyor
@Html.Raw(Html.TextBoxFor(m => m.File).ToHtmlString().Replace("type=\"text\"", "type=\"file\""))
<input type="file" />
, sadece bir metin kutusu