62,272
社区成员
发帖
与我相关
我的任务
分享
Page p = new Page();
//HtmlForm form = new HtmlForm();
//p.EnableEventValidation = false;
//p.DesignerInitialize();
//form.Controls.Add(aaa);
//form.Controls.Add(bbb);
//form.Controls.Add(ccc);
//p.Controls.Add(form);
Encoding code = Encoding.GetEncoding("UTF-8");
StreamWriter sw = null;
sw = new StreamWriter(@"d:\AAA\aaaa.htm", false, code);
System.Web.UI.HtmlTextWriter htw = new HtmlTextWriter(sw);
//p.RenderControl(htw);
aaa.RenderControl(htm);
bbb.RenderControl(htm);
ccc.RenderControl(htm);
sw.Flush();
sw.Dispose();