假设我的网站有源代码:
<!DOCTYPE html>
<html>
<head>
<title>Wow</title>
</head>
<body>
<div id="hello">
</div>
<script type="text/javascript">
function simple()
{
$("#hello").append("<p>Hello</p>");
}
</script>
</body>
</html>
我想要一个 C#/asp.Net 方法来提取它的源代码,如下所示:
<!DOCTYPE html>
<html>
<head>
<title>Wow</title>
</head>
<body>
<div id="hello">
</div>
<p>Hello</p>
</body>
</html>
字符串 src=new WebClient().DownloadString(" http://mywebsite.com ")
没有帮助,因为它与 javascript 一起提取原始 html 代码,与源代码相同。