How can I make an ASP page email the html that is produced by another ASP page?
Thanks
How can I make an ASP page email the html that is produced by another ASP page?
Thanks
You can create a form in the page and put all the items you want in hidden fields inside the form. Create a script to parse and send the form data to your other asp page.
That's what I figured. I was hoping i could use the stream reader or something of that sort to grab the HTML as it comes out.
Your method will probably be faster. Thanks.