asp.net中动态改变网页标题的代码
更新时间:2011年02月24日 01:08:32 作者:
asp.net中动态改变网页标题的代码,需要的朋友可以参考下。
方法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属性一定要被赋过值。
首先:在.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属性一定要被赋过值。
相关文章
CodeFirst从零开始搭建Asp.Net Core2.0网站
这篇文章主要为大家详细介绍了CodeFirst从零开始搭建Asp.Net Core2.0网站的详细过程,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2017-07-07asp.net TreeView递归循环子节点生成树形菜单实例
这篇文章主要介绍了asp.net TreeView递归循环子节点生成树形菜单的方法,涉及asp.net递归算法及节点操作相关技巧,需要的朋友可以参考下2016-07-07详解ASP.Net Core 中如何借助CSRedis实现一个安全高效的分布式锁
这篇文章主要介绍了ASP.Net Core 中如何借助CSRedis实现一个安全高效的分布式锁,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2019-04-04Web.Config文件配置之限制上传文件大小和时间的属性配置
在Web.Config文件中配置限制上传文件大小与时间字符串时,是在httpRuntime httpRuntime节中完成的,需要设置以下2个属性:maxRequestLength属性与ExecutionTimeout属性,感兴趣的朋友可以了解下,或许对你有所帮助2013-02-02asp.net 不用GridView自带删除功能,删除一行数据
数据表一定要有个ID的主键值,你的gridview要设定一下DataKeyNames="ID"这个属性值,接下的事件就好多了,写个OnRowDeleting事件就可以了。2009-11-11
最新评论