Save Current ASP as an image

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • lc

    Save Current ASP as an image

    Hi,

    Is there a way to save the client side opened asp page as
    a image file to the server side.

    That is take a screen shoot of the page and save it as a
    file preferrable html file or some image file and save it
    onto the server.

    Thanks.
  • Mark Schupp

    #2
    Re: Save Current ASP as an image

    You'll need a client-side application or component to do screen captures.

    If you just want the generated HTML then you might be able to use
    client-side code and a frameset (one frame to hold target page, other to
    hold client-side code) to extract document.HTML.o uterHTML and post it back
    to the server. Better would be to modify the ASP page to accumulate output
    into a string and write it to a file on the server directly before sending
    it to the client.

    --
    Mark Schupp
    Head of Development
    Integrity eLearning



    "lc" <lc@hotmail.com > wrote in message
    news:18b101c4ab e7$65539cb0$a60 1280a@phx.gbl.. .[color=blue]
    > Hi,
    >
    > Is there a way to save the client side opened asp page as
    > a image file to the server side.
    >
    > That is take a screen shoot of the page and save it as a
    > file preferrable html file or some image file and save it
    > onto the server.
    >
    > Thanks.[/color]


    Comment

    Working...