当前位置:  开发笔记 > 后端 > 正文

在没有ViewState ASP.Net的情况下获取当前页面的HTML

如何解决《在没有ViewStateASP.Net的情况下获取当前页面的HTML》经验,为你挑选了1个好方法。

有什么办法可以让我获得当前页面的HTML.通过当前页面,我的意思是说我正在使用Default.aspx并希望通过在其上提供一个按钮来获取HTML.

怎么弄它.



1> LukeH..:

编辑以回应澄清要求

您可以覆盖页面的render方法以捕获服务器端的HTML源代码.

protected override void Render(HtmlTextWriter writer)
{
    // setup a TextWriter to capture the markup
    TextWriter tw = new StringWriter();
    HtmlTextWriter htw = new HtmlTextWriter(tw);

    // render the markup into our surrogate TextWriter
    base.Render(htw);

    // get the captured markup as a string
    string pageSource = tw.ToString();

    // render the markup into the output stream verbatim
    writer.Write(pageSource);

    // remove the viewstate field from the captured markup
    string viewStateRemoved = Regex.Replace(pageSource,
        "",
        "", RegexOptions.IgnoreCase);

    // the page source, without the viewstate field, is in viewStateRemoved
    // do what you like with it
}


也许他/她不喜欢你:)
推荐阅读
yzh148448
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有