PetCar Posted November 30, 2003 Posted November 30, 2003 Hi, is there anyway to show an aspx-page as an image on a .asp page? ..or if there is a way to "include" the output from an aspx page on a .asp page? Need urgent help.. Thanks! // Peter Quote
bungpeng Posted November 30, 2003 Posted November 30, 2003 Are you using ASP? aspx-page as an image? I can't get what you mean Quote
*Gurus* Derek Stone Posted November 30, 2003 *Gurus* Posted November 30, 2003 Response.ContentType = "image/jpeg" Response.OutputStream = 'set equal to image stream Quote Posting Guidelines
PetCar Posted December 1, 2003 Author Posted December 1, 2003 Are you using ASP? aspx-page as an image? I can't get what you mean I have made a chart in an aspx page, and i want to show this on my asp page. I saw Dereks answer, but i quite new to asp.net so i dont know where to put the lines. Page_Load? // Peter Quote
fadi Posted December 1, 2003 Posted December 1, 2003 you can put ur code wherever u need. form load is a good choice if u want the chart to appear when the page loads changing the content type means that the page will be rendered to the client as the specified type, the default type is "text/html" thats why the page u c on ur client is an html page. u can change the content type to msword or excel, so the page will be rendered as an excel document or a word document Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.