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 的页面之一向其中添加内容。
div
id="editbtn" runat="server"
我试过这个
ContentPlaceHolder edit = (ContentPlaceHolder)Master.FindControl("editbtn");
但你可以猜到它不起作用。
任何线索
Adiv应该被转换为HtmlGenericControl:
HtmlGenericControl
HtmlGenericControl d = (HtmlGenericControl)Master.FindControl("editbtn"); d.InnerHtml = "Success!";
所以这应该可以解决你的问题......并不意味着这是做你想要实现的目标的最佳方式。