C
Carlos
Hi all,
I need to capture all the html that is generated after the user fills
all the controls on a page. This needs to be captured at the moment
the user hits the submit button. I tried doing it wit a server.execute, but
it raises an exception. It complains about 'infinite loop or infinite
recursion'
i.e.
Dim writer As StringWriter = New StringWriter()
Server.Execute("Default.aspx", writer)
Dim text As String = writer.ToStrin
Can someone suggest something else?
Thanks,
Carlos.
I need to capture all the html that is generated after the user fills
all the controls on a page. This needs to be captured at the moment
the user hits the submit button. I tried doing it wit a server.execute, but
it raises an exception. It complains about 'infinite loop or infinite
recursion'
i.e.
Dim writer As StringWriter = New StringWriter()
Server.Execute("Default.aspx", writer)
Dim text As String = writer.ToStrin
Can someone suggest something else?
Thanks,
Carlos.