0

根据这个回复,我们只能看到服务器发送到浏览器的 HTML 代码。

“查看源”仅显示在浏览器向服务器请求特定网页时服务器发送的源。因此,由于这些更改是在客户端进行的,因此它们不会显示在“查看源代码”中,因为它们是在原始页面交付后进行的。要查看页面的实时源代码,您可以使用webkit 浏览器中的 Web Inspector 视图,或 Firefox 中的 Firebug。这些跟踪对 DOM 的任何更改并更新您可以看到的源。

即使在客户端完成后,我如何在 C# 中获取整个 HTML 代码。我可以使用 Webclient 获取 HTML。

也许我应该像 c# 中的 borwsers 一样工作。但如何?


更新

<script id="frmJqrTplCommentItem" type="text/x-jquery-tmpl">
{{each Comments}}
<li>
    <div class="user-comment-container" itemprop="review" itemscope itemtype="http://schema.org/Review">
        <div class="user-comment-header clearfix">
            <div class="user-info right clearfix {{if UserType === 1}}buyer{{else UserType === 2}}DK-expert{{/if}}">

                <h5>
                    {{if FullName === null || FullName === ''}}
                    <span itemprop="author">کاربر مهمان</span>
                    {{else}}
                    <span itemprop="author">${$value.FullName}</span>
                    {{/if}}
                    {{if UserType === 1}}
                    <span>(خریدار این محصول)</span>
                    {{/if}}

                    <meta itemprop="datePublished" content="${$value.EditDateTime}">
                    <time>${DkUtility.formatDate($value.EditDateTime, 1).FaNumber()}</time>
                </h5>
                {{if IsActive === null || IsActive === false || IsActive === 0}}
                <div class='undercheck'>نظر شما منتظر تایید مدیر می‌باشد </div>
                {{/if}}
            </div>....

例如上面的代码是网页内的 html 代码的一部分。我知道这一方将在客户端执行。我可以访问 {Comments} 吗?

4

1 回答 1

0

简短的回答 -你不能。评估包括所有客户端 HTML 更改在内的整个页面需要您开发一个完整的 Web 浏览器。

于 2017-06-18T11:40:21.477 回答