Hi Vinod,
Following your email, find a way to do that.
Never tried with webservices, but you should be able to use this function
with a webservice.
Look for it at msdn.:
Sub grabPageContent(sPageToFlattenUrl, sFlattenedPageUrl)
Dim oXml
Set oXml = Server.CreateObject("Microsoft.XMLHTTP")
if instr(1,sPageToFlattenUrl,"http://") = 0 then
sPageToFlattenUrl = "http://" & Request.ServerVariables("HTTP_HOST") &
sPageToFlattenUrl
end if
oXml.Open "GET", sPageToFlattenUrl, False
oXml.Send
Dim sContent = oXml.responseText
Set oXml = Nothing
End Sub
Gerald