Server Intellect
 
Home   Asp.Net Tutorials   What's New   Newsletter   More Resources
Tutorial RSS
 
  Categories
Advanced Technologies
AJAX
Internet Browsers
Charts
Controls
Database
Email
Error Handling
File
Graphics
Website Navigation
Network
Performance
User Interface and Themes
Validation
Visual Web Developer
Web Services
XML
Suggest Tutorial


Navigator: Home - Tutorials - File - Writing a file to disk using ASP.NET 2.0 and VB .NET
Writing a file to disk using ASP.NET 2.0 and VB .NET

ASP.Net 4.0 Tutorials V4
Server Intellect Cloud Hosting

ASP.NET File Tutorial

This tutorial will show you how to write to a file on the disk using ASP.NET 2.0 and VB.NET

The .NET Framework offers a number of types that makes accessing resources on filesystems easy to use.

To write a simple file to the disk, we will need to first import the System.IO namespace. The System.IO namespace contains the StreamWriter type that we will use to perform our disk write.

Imports System.IO

We used over 10 web hosting companies before we found Server Intellect. Their dedicated servers and add-ons were setup swiftly, in less than 24 hours. We were able to confirm our order over the phone. They respond to our inquiries within an hour. Server Intellect's customer support and assistance are the best we've ever experienced.

We'll put our code in the btnSubmit_Click() event.

When the btnSubmit_Click() event fires it executes the File.CreateText method with a parameter specifying the path and name of the file which we would like to write to, it also returns a StreamWriter object instance which we then execute the WriteLine and Close methods on.

Protected Sub btnSubmit_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnSubmit.Click
Try
Dim sw As StreamWriter = File.CreateText(MapPath("myFile.txt"))
sw.WriteLine(txtFile.Text)
sw.Close()
Catch ex As IOException
lblStatus.Text += ex.Message
End Try
End Sub

I just signed up at Server Intellect and couldn't be more pleased with my Windows Server! Check it out and see for yourself.

The front end Default.aspx page looks something like this:

<table width="600" border="0" align="center" cellpadding="5" cellspacing="1" bgcolor="#cccccc">
<tr>
<td width="100" align="right" bgcolor="#eeeeee" class="header1"> File Content:</td>
<td align="center" bgcolor="#FFFFFF">
<asp:TextBox ID="txtFile" runat="server" TextMode="MultiLine"></asp:TextBox><br />
<asp:Button ID="btnSubmit" runat="server" Text="Submit" OnClick="btnSubmit_Click" /><br /> &nbsp;
<asp:label ID="lblStatus" runat="server"></asp:label></td>
</tr>
</table>

We chose Server Intellect for its dedicated servers, for our web hosting. They have managed to handle virtually everything for us, from start to finish. And their customer service is stellar.

The flow for the code behind page as follows.

Imports System.IO
Partial Class _Default
Inherits System.Web.UI.Page

Protected Sub btnSubmit_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnSubmit.Click
Try
Dim sw As StreamWriter = File.CreateText(MapPath("myFile.txt"))
sw.WriteLine(txtFile.Text)
sw.Close()
Catch ex As IOException
lblStatus.Text += ex.Message
End Try
End Sub

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

End Sub
End Class

Looking for the C#.NET 2005 Version? Click Here!

Looking for more ASP.NET Tutorials? Click Here!

Download Project Source - Enter your Email to be emailed a link to download the Full Source Project used in this Tutorial!



100% SPAM FREE! We will never sell or rent your email address!



 
  Developer Resources







Server Intellect Rocks