asp.net 中的 Page.Title 与 Title 标签

Page.Title vs Title tag in asp.net(asp.net 中的 Page.Title 与 Title 标签)

本文介绍了asp.net 中的 Page.Title 与 Title 标签的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 asp.net.我注意到我们可以通过两种方式配置页面标题(静态和动态):

I am using asp.net. I have noticed that we can configure page title (static and dynamic both) in two ways:

  1. 我们在页面指令中有一个 Title 属性:

  <%@ Page Language="C#" Inherits="_Default"  Title="My Title" ......%>

  • 我们在页面中也有 </code> 标签:</p> <pre><code class='language-cs'><title runat="server" id="MyTitle"> My Title</title> </code></pre> <p class="cn"></li></p> <p class="cn">两者都可以在代码隐藏文件中访问:<em class="showen"></em></p> <p class="en">Both can be accessed in code-behind file:</p> <pre><code class='language-cs'> MyTitle.Text = "Title from Code behind"; Page.Title = "Page Title from CS"; </code></pre> <p class="cn">而且我发现页面指令覆盖了 html 标题.那么我们应该使用哪一个,为什么?<em class="showen"></em></p> <p class="en">And i have found the page directive overrides the html title. So Which one should we use and why ?</p> <h3 class='h-catalog' rel='catalog'>推荐答案</h3> <p class="cn">最大的不同在于 <code>MyTitle.Text</code> 你必须用 <code>id</code> AND 修饰 Title 元素<code>runat</code> 属性,并记住它的名称以便您可以引用它.例如,当您使用 Masterpage 时,从子页面访问此值也不是那么容易..<em class="showen"></em></p> <p class="en">The biggest difference is that with <code>MyTitle.Text</code> you have to decorate Title element with an <code>id</code> AND <code>runat</code> attributes, and remember it's name so you can reference it. Also accessing this value isn't that easy from child pages when you're using Masterpage for instance..</p> <p class="cn">另一方面,<code>Page.Title</code> 对每个页面都是通用的,所以在我看来它更通用.与您合作的每位新开发人员都无需学习任何新知识,只需使用 Page.Title 格式即可..<em class="showen"></em></p> <p class="en">On the other hand, <code>Page.Title</code> is common to every Page, so it's more universal in my opinion. Every new developer you'll work with won't have to learn anything new, just use the Page.Title format..</p> <p class="cn">所以我的投票会投给传统的"<code>Page.Title</code><em class="showen"></em></p> <p class="en">So my vote would go to the "traditional" <code>Page.Title</code></p> <p class="cn">无论您喜欢使用哪种方式,请坚持使用,这样您就不会混合各种设置标题的方法.这样您就不必担心哪个事件先发生或您的同事会覆盖您的价值观.<em class="showen"></em></p> <p class="en">Whichever you like to use, stick with it, so you won't mix various ways of setting the title. That way you won't have to worry about which event happens first or about your colleague overwriting your values.</p> <p>这篇关于asp.net 中的 Page.Title 与 Title 标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!</p>

  • 本文标题为:asp.net 中的 Page.Title 与 Title 标签

    基础教程推荐