Click here to Skip to main content
15,887,746 members
Articles / Web Development / ASP.NET
Tip/Trick

How To Read a File from Web in ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.50/5 (2 votes)
8 May 2012CPOL 10.1K   6   1
Reading a file from web in ASP.NET

Introduction

I wanted to read an HTML file to send as e-mail body in web... but I could not use FileInfo (I got an exception about URI format).

So... to do it, I use the below code to read content of file.

Using the Code

You should use System.Net and System.Text namespaces:

C#
private string Readfile(string WebFilePath)
{
    string body = string.Empty;
    try
    {
        System.Net.WebClient wc = new System.Net.WebClient();
        byte[] raw = wc.DownloadData(WebFilePath);
        body = System.Text.Encoding.UTF8.GetString(raw);
        return body;
    }
    catch (Exception ex)
    {
        return null;
    }
} 

Points of Interest

The WebFilePath is the full path of file (and Accessible) in web... like http://MyDomain.com/Folder/file.xml.

This method is useful for low-capacity files.

Goodluck !

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer 1
Iran (Islamic Republic of) Iran (Islamic Republic of)
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 5 Pin
Abolfazl Ghavidel13-May-12 2:28
Abolfazl Ghavidel13-May-12 2:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.