Initial import
This commit is contained in:
parent
0c865416ca
commit
04804b89a9
279 changed files with 12945 additions and 0 deletions
20
web/Views/FileSystem/Create.aspx
Normal file
20
web/Views/FileSystem/Create.aspx
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<%@ Page Language="C#" MasterPageFile="~/Models/App.master" Inherits="System.Web.Mvc.ViewPage<FileUpload>" %>
|
||||
|
||||
<asp:Content ID="MainContentContent" ContentPlaceHolderID="MainContent" runat="server">
|
||||
<% using(Html.BeginForm("Create", "FileSystem", FormMethod.Post, new { enctype = "multipart/form-data" })) { %>
|
||||
<div>
|
||||
|
||||
<input type="file" ID="AFile" multiple="multiple" runat="server"/>
|
||||
<%= Html.ValidationMessage("AFile") %>
|
||||
|
||||
<br />
|
||||
|
||||
<input type="submit" name="Envoyer" />
|
||||
|
||||
<br />
|
||||
<asp:Label ID="Label1"
|
||||
runat="server"/>
|
||||
|
||||
</div>
|
||||
<% } %>
|
||||
</asp:Content>
|
||||
Loading…
Add table
Add a link
Reference in a new issue