PDA

View Full Version : Help with parsing a webpage that requires a session?


dprundle
08-31-2006, 07:10 PM
Hey Experts!

I'm trying to parse the links from 4 webpages:

https://www.hrapply.com/devon/JobList.app?page=AppJobList.jsp&topage=1
https://www.hrapply.com/devon/JobList.app?page=AppJobList.jsp&topage=2
https://www.hrapply.com/devon/JobList.app?page=AppJobList.jsp&topage=3
https://www.hrapply.com/devon/JobList.app?page=AppJobList.jsp&topage=4


However, when I use:
strHTML = GetHTML("https://www.hrapply.com/devon/JobList.app?page=AppJobList.jsp&topage=1")
-or-
strHTML = GetHTML("https://www.hrapply.com/devon/JobList.app?page=AppJobList.jsp&topage=2")
-or-
strHTML = GetHTML("https://www.hrapply.com/devon/JobList.app?page=AppJobList.jsp&topage=3")
-or-
strHTML = GetHTML("https://www.hrapply.com/devon/JobList.app?page=AppJobList.jsp&topage=4")


They all return the same webpage
(https://www.hrapply.com/devon/JobList.app?page=AppJobList.jsp&topage=1).

How can I parse the links from these pages???

Thanks for the help.

I'll tip the person who gives me the right answer via paypal.:thumbsup:

Baleric
08-31-2006, 11:06 PM
try using sessions
<% session("link1") = "https://www.hrapply.com/devon/JobList.app?page=AppJobList.jsp&topage=1" %>

then use

<%= session("link1") %>

to write it on the page

also visit
http://www.w3schools.com/asp/asp_sessions.asp
for more info

Spudhead
09-04-2006, 01:00 PM
post the code for GetHTML()