create html file on the server side
ASP.NET
3
Posts
3
Posters
5
Views
1
Watching
-
hi I want create html file form aspx file
-
hi I want create html file form aspx file
Hi, try this code below, if your page name is
"signin.aspx"
thanStringWriter sw = new StringWriter();
HttpContext.Current.Server.Execute("~/signin.aspx",sw,true);
String renderedHtml=sw.ToString(); -
hi I want create html file form aspx file
Perhaps if you explained what is you are trying to accomplish we could assist you better.
I know the language. I've read a book. - _Madmatt