Saving a execution page in server

  • Thread starter Thread starter Jorge Maganto
  • Start date Start date
J

Jorge Maganto

Hi everybody!
I've a aspx page which is in execution and it did any
postback, it read db and it was modified by the user (any
textbox).
I want that when the user push on a button a copy of this
page, with the changes make for the user (in the textbox),
write this page in the server.
Do you know how?
Thanks in advance.
 
Hi,

If you mean save the generate HTML on the server (before sending it to
the client) you can do it by employing Response.Filter [1] , get the
HTML and save it to disk. Just make sure that you activate
Response.Filter just for postback of certain page.

Still I don’t get why you need to do so, can you explain please ?

[1] -
http://authors.aspalliance.com/robertb/articles.aspx?articleId=6&print=t
rue

Natty Gur[MVP]
Phone Numbers:
Office: +972-(0)9-7740261
Fax: +972-(0)9-7740261
Mobile: +972-(0)58-888377
 
Back
Top