C#:块特定 HTML 代码
C#: Block Specific HTML Code
假设我想屏蔽特定的 HTML 代码
<script async annoyingcode.js>
AnnoyingCodeHere
</script>
在 WebBrowserControl1
的网站中。我尝试使用 WebClient1.DownloadFile("website.html", @"C:\BlockerWork")
、File.ReadAllText(@"C:\BlockerWork")
、String.Replace
,然后是 WebBrowserControl1.DocumentStream
,但是 运行 花费的时间太长,而且需要一直下载。在 C# 中有更简单的方法吗?
可以使用WebClient1.DownloadString("website.html")
跳过文件操作
假设我想屏蔽特定的 HTML 代码
<script async annoyingcode.js>
AnnoyingCodeHere
</script>
在 WebBrowserControl1
的网站中。我尝试使用 WebClient1.DownloadFile("website.html", @"C:\BlockerWork")
、File.ReadAllText(@"C:\BlockerWork")
、String.Replace
,然后是 WebBrowserControl1.DocumentStream
,但是 运行 花费的时间太长,而且需要一直下载。在 C# 中有更简单的方法吗?
可以使用WebClient1.DownloadString("website.html")
跳过文件操作