如何将项目放置在母版页的现有 DIV 中?
我有一个包含三个 DIV 块的母版页,例如 div1、div2、div3。我有一个链接到该母版页的内容网络表单。从这个内容形式中,我想以编程方式在 div2 中写入行。如何调用母版页的这个div?我的意思是在标签内写什么来将文本嵌入到这个 div 中?
I have a master page with three DIV blocks, say div1, div2, div3. I have a Content Web Form which is linked to this master page. From this content form, I want to programatically, write lines in say div2. How to do call this div of the master page? I mean what to write inside the tags to embed text in this div?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果将 runat="server" 属性添加到 MasterPage 中的 div,则可以通过首先引用页面中的 Master 属性,从 MasterPage 或内容页面中使用它的 ID 属性来引用该 div。
从内容页的 .cs 文件中,您可以执行类似
Master.MyDiv 的
操作,其中 MyDiv 是 MasterPage 中 div 的 id。
您还可以在 MasterPage 中放置 PlaceHolder(不是 ContentPlaceHolder)控件,然后从页面 (Master.MyPlaceHolder) 引用该控件,并从页面向其添加控件。
If you add the runat="server" attribute to the div in your MasterPage you can reference this div using it's ID attribute either from the MasterPage or from the content page by first referencing the Master property in your page.
from the .cs file of your Content Page you could do something like
Master.MyDiv
where MyDiv is the id of the div in the MasterPage.
You could also put a PlaceHolder (NOT ContentPlaceHolder) control in your MasterPage and then reference the control from your page (Master.MyPlaceHolder) and add controls to it from your page.
如果您的
元素具有唯一的
id
属性,并且其runat
属性设置为server
(以便 ASP.NET 能够了解它们),您可以执行以下操作:If your
<div>
elements have a uniqueid
attribute, and theirrunat
attribute is set toserver
(so that ASP.NET can know about them), you can do: