Telerik Software Academy ASP.NET Web Forms.

Slides:



Advertisements
Similar presentations
Creating Vector Graphics in the Web Learning & Development Telerik Software Academy.
Advertisements

Redundant Array of Independent Disks Borislav Varadinov Telerik Software Academy academy.telerik.com System Administrator Marian Marinov CEO of 1H Ltd.
Writing HTML made easier Telerik School Academy HTML, CSS and JavaScript.
Inside Windows Boot Process Borislav Varadinov Telerik Software Academy academy.telerik.com System Administrator Marian Marinov CEO of 1H Ltd.
Guidelines to Preparing and Delivering an Elevator Pitch Presentation Svetlin Nakov Telerik Software Academy academy.telerik.com Manager Technical Training.
Two basic algorithms for path searching in a graph Telerik Algo Academy Graph Algorithms.
About the Course Telerik Software Academy CSS Styling.
Binary, Decimal and Hexadecimal Numbers Svetlin Nakov Telerik Software Academy academy.telerik.com Technical Trainer
Eclipse + Android SDK, VS + Windows Phone SDK Telerik Software Academy Hybrid Mobile Applications.
Welcome to the JSON-stores world Learning & Development Telerik Software Academy.
Course Content, Evaluation, Exams Svetlin Nakov Telerik Software Academy academy.telerik.com Technical Trainer
Eclipse + Android SDK, VS + Windows Phone SDK Svetlin Nakov Telerik Software Academy academy.telerik.com Technical Trainer
Twitter Bootstrap Telerik Software Academy
Things you need to know George Georgiev Technical Trainer GeorgeAtanasov George Atanasov Front-End Developer.
Hamiltonian Cycle Penka Borukova Student at Telerik Academy.
Group Policy Borislav Varadinov Telerik Software Academy academy.telerik.com System Administrator
Reverse polish notation, Operations with big numbers Ivelin Rachev Telerik Corporation “Baba Tonka” High School of Mathematics.
April, Sofia, Telerik Software Academy Svetlin Nakov Telerik Software Academy academy.telerik.com Technical Trainer
Telerik Software Academy ASP.NET MVC.
Sales Processes, Sales Cycle and the Sales Force Margarita Antonova Volunteer Telerik Academy academy.telerik.com Business System Analyst Telerik.
Design Patterns that ease the design by identifying a simple way to realize relationships between entities. Antony Jekov Telerik Software Academy academy.telerik.com.
Using KendoUI for SPA Applications Learning & Development Telerik School Academy.
The way to create cross-platform apps Telerik School Academy Xamarin apps for iOS, Android & WinPhone.
PEST Analysis, Porter’s 5 Forces and Sustainability Strategies Margarita Antonova Volunteer Telerik Academy academy.telerik.com Business System.
Searching for a Job, Writing CV and Cover Letter, Passing a Job Interview Telerik Academy for Software Engineers October 6 th 2012 – Sofia academy.telerik.com.
Drive Partitioning Borislav Varadinov Telerik Software Academy academy.telerik.com System Administrator Marian Marinov CEO of 1H Ltd.
Telerik Software Academy Mobile apps for iPhone & iPad.
Google APIs and Facebook API Ivaylo Kenov Penka Borukova Telerik Corporation Telerik Academy Students.
The magic of virtual machines Borislav Varadinov Telerik Software Academy academy.telerik.com System Administrator Marian Marinov CEO of 1H Ltd.
Web development with ExpressJS Learning & Development Telerik School Academy.
What it is, and does it work Learning & Development Telerik School Academy.
Device APIs with Xamarin
Telerik Software Academy Mobile apps for iPhone & iPad.
Academy.telerik.com Class of , Fall 2013.
Telerik Software Academy Databases.
Google APIs and Facebook API Ivaylo Kenov Penka Borukova Telerik Corporation Telerik Academy Students.
What are WinJS and WinRT, Using the APIs in JavaScript George Georgiev Telerik Software Academy academy.telerik.com Technical Trainer itgeorge.net.
JavaScript Modules and Patterns Telerik Software Academy
The True power of dynamic web pages Learning & Development Team Telerik Software Academy.
Approximate string matching Evlogi Hristov Telerik Corporation Student at Telerik Academy.
Xamarin with SQLite Telerik School Academy Xamarin apps for iOS, Android & WinPhone.
Know your Tools! Telerik Software Academy JavaScript Fundamentals.
Ivaylo Kenov Telerik Software Academy Technical Assistant.
Developing "evil" JavaScript applications Learning & Development Telerik School Academy.
The PhoneGap History Doncho Minkov Telerik Software Academy Technical Trainer
Building Rock-Solid Software Svetlin Nakov Telerik Software Academy Manager Technical Training
Adobe® Photoshop® CS6 Essentials
Cultivating Professionals for Your Company The Success Story of Telerik Svetlin Nakov, PhD Manager Technical Training Telerik Corp.
Telerik School Academy Xamarin apps for iOS, Android & WinPhone.
The way of the ViewModel and the Binding Learning & Development Telerik School Academy.
AJAX with ASP.NET MVC Telerik Software Academy
Nencho Nenchev Doroteya Agayna Telerik Software Academy Telerik Support Leads.
Installation, Sample Usage, Strings and OOP Telerik Software Academy Software Quality Assurance.
In JavaScript Learning & Development Telerik Software Academy.
Services in AngularJS Telerik Software Academy
Svetlin Nakov Telerik Software Academy Manager Technical Training
What is Roslyn and how can we use it? Telerik Academy Plus C# 6.0 and Roslyn Seminar.
Splitting JavaScript into Dependent Modules Learning & Development Telerik Software Academy.
Changing the default visualization of views in Xamarin.Forms Telerik School Academy Xamarin apps for iOS, Android & WinPhone.
Telerik Software Academy HTML5.
What to expect from the new IDE Telerik Academy Plus Visual Studio 2015 and ASP.NET 5.
Hristian Hristov Telerik Corporation
I have to use math? I am out of here… Telerik School Academy Unity 2D Game Development.
Automating Windows Deployment Borislav Varadinov Telerik Software Academy academy.telerik.com System Administrator
Server Roles and Features Borislav Varadinov Telerik Software Academy academy.telerik.com System Administrator
Binary, Decimal and Hexadecimal Numbers Telerik Software Academy C# Fundamentals – Part 2.
Nikolay Kostov Telerik Software Academy academy.telerik.com Team Lead, Senior Developer and Trainer
Adding UI and Audio element Telerik Academy Plus Unity 2D Game Development.
Dimo Dimov Support Lead, Kendo UI Telerik Telerik Software Academy
File Upload in ASP.NET Ivaylo Kenov Technical Assistant
Presentation transcript:

Telerik Software Academy ASP.NET Web Forms

 File Upload Concepts  Multipart HTTP Requests  File Upload in ASP.NET Web Forms  To server file  To memory stream  Using Kendo UI Upload  Using Telerik ASP.NET AJAX 2

How files are sent through the web

 Done through forms  Content type should be “multipart/form-data”  Selected via input type “file” tag  Data is sent as POST method through http  Files are received and used at the server <asp:Button runat="server" ID="UploadButton" Text="Upload" OnClick="Upload" />

Different kind of POST method

 Form is sent as multiple parts  Enable multipart – type “multipart/form=data”  Request is divided in parts Content-Type: multipart/form-data; boundary= d81b Content-Length: d81b Content-Disposition: form-data; name="file"; filename=“Exam solution.doc" Content-Type: text/plain SomeText d81b Content-Disposition: form-data; name="submit"

Live Demo

Done within minutes

 Request.Files  Gets the collection of sent files (dictionary)  Uses MIME format  HttpPostedFile  Provides access to individual files  string FileName property  int ContentLength in bytes  InputStream – stream of the file  SaveAs(string fileName) – saves the file

 FileUpload  bool HasFile – checks if file is uploaded  byte[] FileBytes – file content in binary  Stream FileContent – file as stream  string FileName – name of the file  HttpPostedFile PostedFile – posted file  IList PostedFiles – collection of all uploaded files

 Using  Using  In the code behind if (FileControl.HasFile) { string filename = Path.GetFileName (FileControl.FileName); FileControl.SaveAs(Server.MapPath ("~/Uploaded_Files/") + filename); }

Live Demo

 You can check for certain file types  You can check for file size if (FileControl.PostedFile.ContentType == "image/jpeg") { // Use file } else { // do not upload } if (FileControl.PostedFile.ContentLength < ) { // Use file } …

Live Demo

 Saving file to stream byte[] fileData = null; Stream fileStream = null; int length = 0; if (FileUploadControl.HasFile) { length = FileControl.PostedFile.ContentLength; fileData = new byte[length + 1]; fileStream = FileControl.PostedFile.InputStream; fileStream.Read(fileData, 0, length); } MemoryStream stream = new MemoryStream(fileData);

Live Demo

Asynchronous and large files support

 Kendo Upload widget  Easily done  Have upload and delete  Styled and ready to use  Supports asynchronous file upload  Supports multiple file upload at once  Supports sending large files in parts

 Steps for asynchronous large multi-upload  Create landing page for the widget  Add input type “file” (no form required)  Add JavaScript for the widget  Add upload handler  Add remove handler (if you need it)  In web.config set request max length <httpRuntime targetFramework="4.5" executionTimeout="110" maxRequestLength="25000" />

 Landing page $(document).ready(function () { $("#uploaded").kendoUpload({ async: { saveUrl: "Upload", removeUrl: "Remove", autoUpload: true, } });

 Upload page  Get name of the input from Request.Files  Return empty response if successful Response.Expires = -1; HttpPostedFile file = Request.Files["uploaded"]; string savepath = Server.MapPath("~/Uploaded_Files/"); string filename = file.FileName; file.SaveAs(savepath + filename); Response.ContentType = "application/json"; Response.Write("{}");

 Remove page  Get file from Request.Form[“fileNames”]  If file exists – delete it var file = Request.Form["fileNames"]; if (file != null) { var fileName = Path.GetFileName(file); var physicalPath = Path.Combine (Server.MapPath("~/Uploaded_Files"), fileName); if (File.Exists(physicalPath)) File.Delete(physicalPath); }

Live Demo

Designed for Web Forms

 Steps for asynchronous file upload  Install ASP.NET AJAX Controls  Add RadAsyncUpload control to a page  Add RadScriptManager (in web.config too)  Set MultipleFileSelection  Set TargetFolder  Add RadButton or normal ASP submit button

Live Demo

форум програмиране, форум уеб дизайн курсове и уроци по програмиране, уеб дизайн – безплатно програмиране за деца – безплатни курсове и уроци безплатен SEO курс - оптимизация за търсачки уроци по уеб дизайн, HTML, CSS, JavaScript, Photoshop уроци по програмиране и уеб дизайн за ученици ASP.NET MVC курс – HTML, SQL, C#,.NET, ASP.NET MVC безплатен курс "Разработка на софтуер в cloud среда" BG Coder - онлайн състезателна система - online judge курсове и уроци по програмиране, книги – безплатно от Наков безплатен курс "Качествен програмен код" алго академия – състезателно програмиране, състезания ASP.NET курс - уеб програмиране, бази данни, C#,.NET, ASP.NET курсове и уроци по програмиране – Телерик академия курс мобилни приложения с iPhone, Android, WP7, PhoneGap free C# book, безплатна книга C#, книга Java, книга C# Николай Костов - блог за програмиране

1. Create a Web Forms upload page using Kendo UI / ASP.NET AJAX Controls for archive with text files. The upload must work only with.zip file extension. You should not write the zip file into the server file system. Save the file to the memory and using external library, extract the text files and save their content into the database. The text files should not be saved to the file system either. 28

 C# Telerik Academy  csharpfundamentals.telerik.com csharpfundamentals.telerik.com  Telerik Software Academy  academy.telerik.com academy.telerik.com  Telerik Facebook  facebook.com/TelerikAcademy facebook.com/TelerikAcademy  Telerik Software Academy Forums  forums.academy.telerik.com forums.academy.telerik.com 29