Ask a Question related to ASP.NET General, Design and Development.
-
sc #1
Redirect HTML Output to File?
I am generating some nested DataLists, but instead of displaying them on
the client browser, I want to save the output HTML stream to an on-disk
file in %temp%.
What is the best way to do that?
Thanks.
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
sc Guest
-
redirect output to a file
Hi everybody I was wondering I've made a little script to make the 'w'-command a bit nicer to work with.. ---~/bin/w--- #/bin/bash cd w -sh... -
Redirect output of command to a list
Hi all, I have been doing redirect the output of command (an external tool, exe) to a file, by doing following: system( "tool.exe... -
can't redirect output to a file?!
i wrote a simple program that read data from STDIN but redirected in a pipe from a file parse it and wrote output to STDOUT,here is the code: ... -
Dump Html file as output from CGI script
Dan Muey wrote: Hi Dan, I don't think that is actually what he is asking for.Unless I misunderstand, he is referring to a pass-through... -
Parse HTML file, output to csv file
Message-ID: <2d0bce63.0307041035.78a2bd75@posting.google.com> from riddlermarc contained the following: If you only want to do this... -
Kevin Spencer #2
Re: Redirect HTML Output to File?
Response.WriteFile()
--
HTH,
Kevin Spencer
Microsoft MVP
..Net Developer
[url]http://www.takempis.com[/url]
Big things are made up of
lots of little things.
"sc" <ddvsv12@ddvsv12.net> wrote in message
news:uHjmw1tSDHA.1912@TK2MSFTNGP12.phx.gbl...>
>
> I am generating some nested DataLists, but instead of displaying them on
> the client browser, I want to save the output HTML stream to an on-disk
> file in %temp%.
>
> What is the best way to do that?
>
> Thanks.
>
> *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
> Don't just participate in USENET...get rewarded for it!
Kevin Spencer Guest
-
Unregistered #3
Re: Redirect HTML Output to File?
Response.Write brings a file INTO the HTML output stream. I think the author wants to do the opposite: have the HTML output go to the file instead of (or in addition to) the browser. It would sort of be like doing a browser "Save As HTML" at the server side via programming instead of mousing menus.
Unregistered Guest



Reply With Quote

