D Dan Jan 25, 2006 #1 How do I get an HTM page ( say INDEX.HTM) from an .aspx file in VB.NET? (I am assuming that is doable) Thanks
How do I get an HTM page ( say INDEX.HTM) from an .aspx file in VB.NET? (I am assuming that is doable) Thanks
S Skyruner2 Jan 25, 2006 #2 You could rund the aspx by opening it in you browser and then copying the html. if that is what you mean...
You could rund the aspx by opening it in you browser and then copying the html. if that is what you mean...
M Mark Newmister Jan 25, 2006 #3 I'm not sure that I understand your question but this may help: System.IO.TextWriter tw = new System.IO.StringWriter(); this.Server.Execute("Index.htm",tw); this.Literal1.Text = tw.ToString();
I'm not sure that I understand your question but this may help: System.IO.TextWriter tw = new System.IO.StringWriter(); this.Server.Execute("Index.htm",tw); this.Literal1.Text = tw.ToString();