用户登录  |  用户注册
首 页商业源码原创产品编程论坛
当前位置:PB创新网文章中心.Net

动态改变asp.net网页的标题

减小字体 增大字体 作者:佚名  来源:本站整理  发布时间:2009-03-12 15:51:27

实验成功方法有二:

方法1.

首先:在.aspx页:

<HEAD>
  <title>
   <%=PageTitle %>
  </title>

。。。。。。。

</HEAD>

其次:在.aspx.cs页:

public class news_view : System.Web.UI.Page
 {
  。。。。。。。。。。。。 
  //用于动态设置页面标题
  protected string PageTitle;

。。。。

 private void Page_Load(object sender, System.EventArgs e)
  {

。。。。。。。

   //动态设置网页的标题title为显示页内容的“标题”
    PageTitle=lblBiaoTi.Text;

。。。

注意:这里的lblBiaoTi是一个Label控件,也可以是TextBox控件或其它服务器控件。

PageTitle=lblBiaoTi.Text;句之前lblBiaoTi的Text属性一定要被赋过值。

方法2:利用Literal控件

首先:往.aspx页中拖入一个Literal控件。ID设为PageTitle。

其次:进入.aspx的HTML页面,将刚加的Literal控件的代码完全剪切并粘贴到<title>和</title>之间。

最后:在.aspx.cs页面的适当位置,如PageLoad函数中设置PageTitle的值。

示例:

在.aspx中:

<Head>

<title>

       <asp:Literal id="PageTitle" runat="server"></asp:Literal>

</title>

在.aspx.cs中:

public class news_view : System.Web.UI.Page
 {
  。。。。。。。。。。。。 
  //用于动态设置页面标题
  protected string PageTitle;

。。。。

 private void Page_Load(object sender, System.EventArgs e)
  {

。。。。。。。

   //动态设置网页的标题title为显示页内容的“标题”
    PageTitle=lblBiaoTi.Text;

。。。

注意:这里的lblBiaoTi是一个Label控件,也可以是TextBox控件或其它服务器控件。

PageTitle=lblBiaoTi.Text;句之前lblBiaoTi的Text属性一定要被赋过值。

Tags:

作者:佚名

文章评论评论内容只代表网友观点,与本站立场无关!

   评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论

栏目导航

本类热门阅览

相关文章

PB创新网ourmis.com】Copyright © 2000-2009 . All Rights Reserved .
页面执行时间:1,468.75000 毫秒
Email:ourmis@126.com QQ:2322888 蜀ICP备05006790号