Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちはdiv、site.master ファイルがid="editbtn" runat="server"あり、site.master を使用するページの 1 つからコンテンツを追加しようとしています。
div
id="editbtn" runat="server"
私はこれを試しました
ContentPlaceHolder edit = (ContentPlaceHolder)Master.FindControl("editbtn");
しかし、ご想像のとおり、うまくいきません。
誰かの手がかり
Aは次のdivようにキャストする必要がありますHtmlGenericControl。
HtmlGenericControl
HtmlGenericControl d = (HtmlGenericControl)Master.FindControl("editbtn"); d.InnerHtml = "Success!";
それで問題が解決するはずです...これがあなたが達成しようとしていることを行うための最良の方法であるという意味ではありません。