这就是我通常执行 aspx web 表单并从输出中获取字符串的方式:
public static string GetAspPageOutput(string page)
{
string html;
using (var sw = new StringWriter())
{
HttpContext.Current.Server.Execute(page, sw);
html = sw.ToString();
}
return html;
}
我如何获得一个字节数组?