Unable to download some HTML files

B

BAZZER

Hello.

I am trying to download individual HTML pages useing a program called WGET
on a Linux machine. The WGET fetches typed in URL and stores as source
code into a directory. This works ok for older, unintelligent HTML pages,
but I am having trouble with a newer version.
The URL LINK is as follows.
<a class="dropDown"
href="http://www.foosite.com/foo?action=go_types&class_id=2">

I send & as hex.
I know all after ? is/are Query String , but am not sure what that means .
ARE they sent as is or are they manipulated by browser software
beforehand?
WGET is sending every thing between second quotes.
I have found no reference in HTML literature to the item in LINK of
class="dropDown"
and would appreciate a point in the right direction.

Thanks in anticipation.
Barry.
Replies to (e-mail address removed)

xxx=pan
 
D

David Dorward

BAZZER said:
The URL LINK is as follows.
<a class="dropDown"
href="http://www.foosite.com/foo?action=go_types&class_id=2">

I send & as hex.

If you mean you convert it to %26, don't. & has special meaning in URLs (it
separates query parameters), %26 is a literal ampersand.
I know all after ? is/are Query String , but am not sure what that means .
ARE they sent as is or are they manipulated by browser software
beforehand?

Sent as is.
WGET is sending every thing between second quotes.

That is correct
I have found no reference in HTML literature to the item in LINK of
class="dropDown"

Class makes a link a member of a group that can be referenced. This is
typically done using CSS, but sometimes also by JavaScript (or other
languages on the server before sending the page to the client). It has no
impact on the URL in the href attribute.
Replies to (e-mail address removed)

Ask on Usenet, get the answer on Usenet.
 

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

Members online

Forum statistics

Threads
474,434
Messages
2,571,689
Members
48,796
Latest member
Greg L.

Latest Threads

Top