Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 1.0 and 1.1 > ASP.NET 1.1
|
ASP.NET 1.1 As of 10/6/2005, this forum is locked as part of the reorganization described here: http://p2p.wrox.com/topic.asp?TOPIC_ID=35394. No posts have been deleted. Open ongoing discussions from the last week have been moved to either ASP.NET 1.0 and 1.1 Beginners http://p2p.wrox.com/asp-net-1-0-1-1-basics-60/ or ASP.NET 1.0 and 1.1 Professional. http://p2p.wrox.com/forum.asp?FORUM_ID=50. See my sticky post inside for more.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 1.1 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old July 29th, 2005, 05:25 AM
Registered User
 
Join Date: Jul 2005
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to takica Send a message via MSN to takica Send a message via Yahoo to takica
Default How to read simple txt file from URL?

Plz help,
I have problem with reading txt file from URL. I tried with File.OpenText:

filetoread = MapPath("http://www.sitename/file.txt")
Dim filestream As StreamReader
filestream = File.OpenText(filetoread)

And when I run it, Error Message comes:
Map paths expected to be virtual

Does anyone knows how to solve this problem?

Thx.
 
Old July 29th, 2005, 05:56 AM
Authorized User
 
Join Date: Nov 2004
Posts: 52
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to avanishp
Default

Hi
you can not read text file on other server through file object. For that my idea is you need to download that file on your server and then you can read it.


Avanish Pandey
Set your heart upon your work, but never on its reward
 
Old July 30th, 2005, 08:12 AM
planoie's Avatar
Friend of Wrox
 
Join Date: Aug 2003
Posts: 5,407
Thanks: 0
Thanked 16 Times in 16 Posts
Default

You could use the HttpRequest class to create a Http request to that URL. The resulting response will contain the HTML response from the request, which in this case will be the file contents.

-Peter
 
Old July 30th, 2005, 08:14 AM
planoie's Avatar
Friend of Wrox
 
Join Date: Aug 2003
Posts: 5,407
Thanks: 0
Thanked 16 Times in 16 Posts
Default

Sorry, I meant to write the HttpWebRequest class.

http://msdn.microsoft.com/library/en...classtopic.asp

-Peter





Similar Threads
Thread Thread Starter Forum Replies Last Post
read any ".txt" file RodrigoGuteriez C# 3 November 18th, 2008 01:07 PM
read txt file from vb6 poupis VB How-To 5 April 23rd, 2008 10:31 PM
need sample code for read txt file lawsoncobol Access VBA 4 July 16th, 2007 08:30 AM
How to read simple txt file from URL? takica General .NET 1 August 6th, 2005 01:02 PM
Read data from a text file (*.txt) adriant42 Excel VBA 2 June 4th, 2004 06:32 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.