sunkiks

sunkiks

  • NA
  • 27
  • 0

Saving the Html output of aspx page

May 9 2004 4:47 PM
I'm trying to get the Html output of an aspx page using webResponse. But I'm not getting all the dynamic code that is created at the server side (Tables..). Here is the code: mywebReq = WebRequest.Create(Server.MapPath("linkscreate.aspx")); mywebResp = mywebReq.GetResponse(); sr = new StreamReader(mywebResp.GetResponseStream()); strHTML = sr.ReadToEnd(); Help!

Answers (1)