Web queries for a password-protected ASP page

G

Guest

I would like to easily extract data from a web page that I have created using Active Server Pages. The rub here is that the page is password protected and that it must be filtered before it provides the correct results. The commands to do the filtering are NOT in the URL. How can I use a web query to extract this data from my web page. When I try to do it I get the response that I am not logged in which is the typical response if I try to display a page from the URL only w/o logging in. Should I be looking at something besides web queries to simply cut and paste information from my web page to the Excel spreadsheet?
 
T

Tom Ogilvy

You can try something like this:

"http://UserName:[email protected]/File.xls"


My understanding is that there is no standard for getting a username and
password for http, so the above may not work.

That said, does the data only exist in the code of the web page? If not,
why not go to the source or have the asp write a file that you can retrieve.
I believe using the above is more reliable with FTP.

--
Regards,
Tom Ogilvy

Bob said:
I would like to easily extract data from a web page that I have created
using Active Server Pages. The rub here is that the page is password
protected and that it must be filtered before it provides the correct
results. The commands to do the filtering are NOT in the URL. How can I
use a web query to extract this data from my web page. When I try to do it
I get the response that I am not logged in which is the typical response if
I try to display a page from the URL only w/o logging in. Should I be
looking at something besides web queries to simply cut and paste information
from my web page to the Excel spreadsheet?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top