|
|
|
|
|||||||||||||||||
IntroductionThis article is a continuation of the article, Creating Text Files in ASP .NET. In this article, we will see read the text file which we created earlier. Things that we will be learning in this article
The Namespace that is required to deal with Files
We require the namespace, System.IO to work with files. So, we should import this
namespace in our ASPX page such as How to Read a text File?To start with, we need to create an instance of the object, StreamReader. The instance will be the file pointer for us. Once we have a File Pointer, we need to invoke the method, OpenText method of the object, File. The method, OpenText takes a string as an argument. The string is nothing but the path of file that is going to get created. Now, let us see an example. Let us assume, we have a textbox with textmode set to MultiLine and a button. On the click event of the button, we need to read the text file. The code within the Click event is shown below. Code in the OnClick event of button.
How it works?We are first creating an instance of StreamReader, which is termed as fp (file pointer). Then, in the Try block, we invoke the OpenText method. To read the content, we use the method, ReadToEnd. Actually, we have just three lines of code which reads content from a text file. Once we have read the content from the text file, we close the StreamReader by invoking the Close method of StreamReader. Test this ScriptDownload the code
Click here to download the ASPX page ConclusionReading a text file is just the same way as creating the textfile. We can also use the method Read or ReadLine to read data from a text file. Links
Creating a Text File Send your comments to das@aspalliance.com Back to Tutorial | |||||||||||||||||||
| Copyright © 2000-2003 ASPAlliance.com Page Rendered at
11/21/2009 6:37:12 AM |
|||||||||||||||||||