as part of an integration (not soap, not really rest). i need to hit another website with a series of well formatted url'sthe 1st one in the series has to be a login url (http://server.com/login.php?u=xxx&p=yyyythis creates the serverside session and authenticates me. then using the same session i can call any one of the next few urlse.g. http://server.com/getall.php?id=123 http://server.com/findbyname.php?name=bob etc etci need to keep one session open the whole time, and be able to strip the responses out of each.....I can either do this server side (on a post back), or clientside with javascript (note - target server is on a different domain from my asp.net server)Thanks