如何在Asp.net中创建母版页?

发布于 2024-10-10 23:40:44 字数 238 浏览 1 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

乱了心跳 2024-10-17 23:40:44

添加项目:

alt text

Add Item:

alt text

也只是曾经 2024-10-17 23:40:44

在解决方案资源管理器中右键单击您的项目,然后选择添加新项目。在打开的模板中,选择母版页并指定母版页的名称,然后单击添加

替代文本

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.

alt text

如梦 2024-10-17 23:40:44

@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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文