0
我需要更新了一下那就是BEING一個的.aspx頁面上呈現的文本的代碼。我搜索了源代碼和數據庫表,視圖和存儲過程,但無法找到它。ASP:佔位符 - 無法找到正在生成的內容
的正在生成的文本代碼位看起來是這樣的:
<asp:PlaceHolder id="teamMemberTable" runat="server" />
我搜索,但沒有找到,以teamMemberTable
代碼中的其他任何地方的任何引用。生成該位的代碼是否有可能被編譯爲二進制文件,並且不再以明文形式存在?
這裏是輸出HTML的示例:
<span id="ctl00_rightContent_Repeater1_ctl01_Literal1" class="teamListName">
Team Number One
</span>
<table>
<tr>
<td class="teamListMember">Team Captian</td>
<td class="teamListPlayer">Jane Doe</td>
<td class="teamListStatus teamListStatusPaid">Paid</td>
</tr>
<tr>
<td class="teamListMember">Player 2</td>
<td class="teamListPlayer">John Q. Public</td>
<td class="teamListStatus teamListStatusNotPaid">Not Paid</td>
</tr>
</table>
我們會得到猜測什麼樣的內容是? – 2013-02-22 04:00:10
告訴我們什麼,它是如何呈現您怎麼從需要 – coder 2013-02-22 04:04:34