Re: ASP Net Session cookie (General questions)
'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:
- ASP Net Session cookie - jameswink, 2006-01-06, 14:41
- Re: ASP Net Session cookie - wodSupport, 2006-01-06, 15:07
- Re: ASP Net Session cookie - jameswink, 2006-01-06, 15:49
- Re: ASP Net Session cookie - jameswink, 2006-01-06, 15:51
- Re: ASP Net Session cookie - wodSupport, 2006-01-06, 15:54
- Re: ASP Net Session cookie - jameswink, 2006-01-06, 15:51
- Re: ASP Net Session cookie - jameswink, 2006-01-06, 15:49
- Re: ASP Net Session cookie - wodSupport, 2006-01-06, 15:07