Readind Browser Contents from HttpModule

  • Thread starter Thread starter Dexter
  • Start date Start date
D

Dexter

I have an <img> tag like <img alt=none src=http://somesite.com/mypage.aspx>
embedded into an email message. The request returns a gif image to the
browser. What I am unable to do is to access the html contents of the browser
at the moment when this request is made. Request.Browser property gives
browser capabilities not access to the contents of the browser. If someone
know how it can be acheived, I be a happy tropper.
 
This sounds like the classic "Client side" vs "Server Side" issue
misunderstanding. What is in the browser is in no way connected with what you
do on the server. the ASP.NET Page class that generated the HTML the browser
is displaying is long gone.

If the browser makes FORM POST, then form data is transmitted to your
ASP.NET page and your can retrieve the form items via the Request.Form
collection. However there is no way to "see" what that browser may be
displaying.
Hope that helps.
Peter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top