我有多個TD的一個表,都具有標識使用C#下面的代碼變化TD的innerHTML
HtmlTableCell cell = (HtmlTableCell)this.Page.FindControl("changeMe"); cell.InnerHtml.Replace("value", "newvalue");
但是= 「changeMe」
<td id="changeMe" runat=server>here is my value</td>
林,我得到一個空例外。如何查找並替換C#中TD的內容?
基本上,我想要將TDs html的一部分更改爲新值。
ID'changeMe'與FindControl(「contType」)不匹配。 – Scorpion
@Scorpion:糟糕,我打錯了我的例子。他們匹配我的源代碼:) – JustAnotherDeveloper