dragonwell
Programmer
Does anyone know how to use the output of a ASP.NET page to write html into a non-.NET page, such as a static HTML page?
I knwo you can do something like:
If the MakeImage.aspx page outputs a dynamic image, you can use that tag on an html page to get a dynamic image.
What I want to do is more complicated, though - ultimately I want to get a block of HTML text from the server based on values read in from cookies. I have the aspx page that will render the output I need, using querystring values. Now I just need to figure out the javascript (probably using document.write()) that will "call" or "execute" the asp.net page.
Anyone have any background in this?
Thanks!
-d
I knwo you can do something like:
Code:
<img src="[URL unfurl="true"]http://myserver.com/MakeImage.aspx">[/URL]
What I want to do is more complicated, though - ultimately I want to get a block of HTML text from the server based on values read in from cookies. I have the aspx page that will render the output I need, using querystring values. Now I just need to figure out the javascript (probably using document.write()) that will "call" or "execute" the asp.net page.
Anyone have any background in this?
Thanks!
-d