Hi
I am trying to do the following:
it gives me an error...
I know that it will work with full url path like but it looses a cookey
Ok here is my problem:
I have a session cookiy via this cookie I am getting session data out of DB. This page I want to get HTML from is a template that extracts session data (and formtats it) using this session cookie. Then I feed this data (html) to my e-mail component and send as HTML e-mail. When I specify full url it can't find that cookie and fails to load data out ...
So my question is this: is there any way I can make a http call or any other call that will execute ASP template under context of current user and also be able to grab HTML after?
I am trying to do the following:
Code:
Set objXml = Server.CreateObject("Microsoft.XMLHTTP")
' Opens the connection to the remote server.
objXml.Open "GET", "emailOutput.asp", False
' Actually Sends the request and returns the data:
objXml.Send
it gives me an error...
I know that it will work with full url path like but it looses a cookey
Ok here is my problem:
I have a session cookiy via this cookie I am getting session data out of DB. This page I want to get HTML from is a template that extracts session data (and formtats it) using this session cookie. Then I feed this data (html) to my e-mail component and send as HTML e-mail. When I specify full url it can't find that cookie and fails to load data out ...
So my question is this: is there any way I can make a http call or any other call that will execute ASP template under context of current user and also be able to grab HTML after?