Re: ASP Net Session cookie - WeOnlyDo Discussion board

Re: ASP Net Session cookie (General questions)

by jameswink, Friday, January 06, 2006, 15:49 (6895 days ago) @ wodSupport

'This is where I call the page...

Set Http1 = New wodHttpDLXCom
Http1.Timeout = 5
Http1.Blocking = False
Http1.AutoRedirect = True
Http1.URL = http://parmls.com/
Http1.Login = 1234
Http1.Password = password
Http1.Request.UserAgent = Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)

Http1.Get

'Then when processing the response on Done I do...

For Each oldcookie In Http1.Response.Cookies

strCookieName = oldcookie.Name
strCookieValue = oldcookie.Value

objTXT.WriteLine Name: & oldcookie.Name & Value: & oldcookie.Value

'Function that holds all cookies in a collection for me
AddCookie(strCookieName, strCookieValue)

Next


Complete thread: