当前位置:中国站长下载文章中心网页编程.NET编程 → 动态改变asp.net网页的标题

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

减小字体 增大字体 作者:编辑整理  来源:互联网  发布时间:2008-9-15 22:27:26

实验成功方法有二:

方法1.

首先:在.aspx页:

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

。。。。。。。

</HEAD>

其次:在.aspx.cs页:

publicclassnews_view:System.Web.UI.Page
{
。。。。。。。。。。。。
//用于动态设置页面标题
protectedstringPageTitle;

。。。。

privatevoidPage_Load(objectsender,System.EventArgse)
{

。。。。。。。

//动态设置网页的标题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:Literalid="PageTitle"runat="server"></asp:Literal>

</title>

在.aspx.cs中:

publicclassnews_view:System.Web.UI.Page
{
。。。。。。。。。。。。
//用于动态设置页面标题
protectedstringPageTitle;

。。。。

privatevoidPage_Load(objectsender,System.EventArgse)
{

。。。。。。。

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

。。。

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

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