BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
public class saveFiles : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
string targetFolder = HttpContext.Current.Server.MapPath("uploadfiles");
if (!Directory.Exists(targetFolder))
{
Directory.CreateDirectory(targetFolder);
}
HttpRequest request = context.Request;
HttpFileCollection uploadedFiles = context.Request.Files;
if (uploadedFiles != null && uploadedFiles.Count > 0)
{
for (int i = 0; i < uploadedFiles.Count; i++)
{
string fileName = uploadedFiles[i].FileName;
int indx = fileName.LastIndexOf("\\");
if (indx > -1)
{
fileName = fileName.Substring(indx + 1);
}
uploadedFiles[i].SaveAs(targetFolder + "\\" + fileName); //save file in destination
}
}
else
{
}
}
} |
<ej:Tab ID="DefaulttabContent" runat="server" Width="600px" ShowCloseButton="true"HeaderPosition="Top" EnablePersistence="false" EnableTabScroll="false" EnableRTL="false">
<Items>
<ej:TabItem Id="steelman" Text="Man of Steel">
<ContentSection>
<div class="control">
<ej:RTE runat="server" ID="rteBeitragDateien" AllowEditing="true"ShowToolBar="true"></ej:RTE>
</div>
<ej:Button runat="server" ID="btnSaveComment" Text="Speichern"></ej:Button>
<asp:Literal runat="server" ID="litComment"></asp:Literal>
<div>
<ej:UploadBox runat="server" ID="ubCommentFile" AutoUpload="false"MultipleFilesSelection="true" ExtensionsAllow=".pdf" SaveUrl="saveFiles.ashx"></ej:UploadBox>
</div>
</ContentSection>
</ej:TabItem>
</Items>
</ej:Tab> |