Popular Articles | Latest Articles | Categories | RSS Feeds

Using File Uploading Control

Published on 7/8/2008 by Dotnetindex
More articles in ASP.NET



 Vote this tutorial:

.NET comes with great features. Anymore your do not need any additional code libraries to upload files to your web server. Microsoft.NET includes itself a file upload wizard. Now we will examined and play with this tool. I've used Visual Web Developer 2008 and ASP.NET 3.5 to create this sample application.

First we need to create a new web form and place FileUpload control on page. Drop a button and name it as Upload. Also drop a label and named as lblMsg to handle any message. Our file upload control name will be inputFileUpload. But you may rename anything in this sampel application.

 

File Uploading with ASP.NET

After dropping and naming everything, your page must look like similiar this screen. Now let's pass code behind and add following code to your code page. To access code behind, simply double click on Upload button. Enter following code:

Protected Sub uploadButton_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles uploadButton.Click
Dim strPath As String = Server.MapPath("uploads\")
Dim fileName As String
Try
If inputFileUpload.HasFile Then
fileName = inputFileUpload.FileName
inputFileUpload.SaveAs(strPath + fileName)
lblMsg.Text = "File uploaded!
File Name:" & fileName
Else
lblMsg.Text = "You did not upload anything!"
End If
Catch ex As Exception
lblMsg.Text = ex.ToString
End Try
End Sub

Now run application pressing F5 on keyboard. Ok, that was really simple and we have typed less code. We have saved file as original name but you may change file and path. All you need is to play with strParh and fileName variables.

Happy Coding!

 

Comments:
no comments submitted


Only members can write comments.Please, login / register to write comment.

Latest Posts

Active News Manager - news management system




Welcome to Dotnetindex.com:Login  |  Register
Free software:
Giga RSS Reader
IkonAdman
QMailing list
Active News
Download Manager (PRO)
Download Manager (Lite)

Search Dotnetindex.com:


Who's online

  • There 26 online users.

Latest tutorialsAutocomplete Filter from the Old Futures Project Working in Dynamic Data 4
Developing a Facebook Connect Application Using ASP.NET
Conditional Row Highlighting in Dynamic Data
UserControl as a DLL Made Easy
Using GroupTemplate in ASP.NET ListView Control (Tiled Display)
Creating Master-Detail GridView Using jQuery
ASP.NET MVC 2.0 and AJAX Part 1
Sorting Tabular Data in ASP.NET MVC
Asynchronous Form in ASP.NET MVC 2
Populating ASP.NET TreeView Control Recursively
A look at SAP Crystal Reports for Visual Studio 2010
Reporting in Threads
Regular Expressions Make Pattern Matching and Data Extraction Easier
Perform Database Administration Operations with SQL Server Management Objects
SQL Server Compact 3.5 Beta 2 available for download
ASP.NET Resources, Reviews

ASP Resources, Reviews

PHP, ASP, .NET, JSP Resources, Reviews

Hotscripts.com Free Photoshop, Flash and 3DS MAX tutorials