如何在Asp.net中创建母版页?
我是 ASP.Net 应用程序的新手。现在我想创建一个网站。如何创建母版页以及如何插入表格(模板)。
请参阅此链接: http://www.keystream.se/index.php
我希望如此格式化简单的网站。告诉我如何一步一步创建它。我在我的系统中使用 Visual Studio 2010 软件。
I am new for ASP.Net application. Now I want to create a website. How to create master page and how to insert table (template).
Please see this link: http://www.keystream.se/index.php
I expect this format simple website. Tell me how to create it step by step. I am using Visual Studio 2010 software in my system.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
添加项目:
Add Item:
在解决方案资源管理器中右键单击您的项目,然后选择添加新项目。在打开的模板中,选择母版页并指定母版页的名称,然后单击添加。
Right click on your project in the solution explorer and select add new item. In the template that open select master page and specify a name for your master page and click add.
@x2 给出的链接足以让您了解如何使用母版页。
但如果您想知道以下是您需要遵循的步骤。
1)首先显然是决定您想要在页面中使用的主题或模板。
2)然后将母版页添加到您的项目中,如 @Darin Dimitrov 所示。
3)决定页面的哪些区域将被频繁更改,哪些区域将是静态的(您仍然可以在代码中更改它们)。
4)然后相应地设计母版页。并添加一个像这样的内容占位符。
。这将是通常的 aspx 页面内容的占位符。5)请记住,如果您想应用主题,您需要将
EnableThemeing
属性设置为 true,然后在 aspx 页面中设置主题。The link given by @x2 is more than enough for you to understand on how to use master pages.
But if u wanna know here are the steps you need to follow.
1) First is obviously to decide a theme or a template that u wanna have in your page.
2) Then Add a master Page to your project as shown by @Darin Dimitrov .
3) Decide on what area of the page will be frequently changed and which of them will be a static ( You can still change them in code).
4) Then Design the Master page accordingly. and add an content place holder like this.
<asp:ContentPlaceHolder id="PageContentPlaceholder" runat="server"></asp:ContentPlaceHolder>
. This will be the place holder for the contents of the usual aspx pages.5)Remember if you wanna aply themes you need to set
EnableThemeing
attribute to true and then set the Theme in the aspx page.