...
ASP.NET allows for the easy creation of upload handler scripts. The following ASP.NET page allows files to be uploaded. The fileupload.aspx page does not process the upload; this task is performed by the fileupload.aspx.cs page. The code for the fileupload.aspx page is as follows:
Code Block |
---|
<%@ Page language="c#" Codebehind="fileupload.aspx.cs" AutoEventWireup="false" Inherits="Ephox.FileUpload" %> |
...