I've done something like it, this should work for you. Use Javascript to create the new window, check http://www.DynamicDrive.com for examples. Your ASP page will have to write the JS code and the data you want to display to the client which then constructs the new window and page without the toolbars etc. ie the window and its contents are created on the client side.
<script language=javascript> doddisWindow=window.open('','doddisWindow','width=640,height=220'); doddisWindow.document.write('My output is: <% =someValue %>'); doddisWindow.document.write('I am a good window'); doddisWindow.document.write('I like to smile. <a href=/forum/icon_smile.gif>') </script>
Edited by - Dan Martin on 13 November 2001 19:06:45