欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

动态改变ASP.net页面标题和动态指定页面样式表的方法

程序员文章站 2022-06-14 11:38:39
如果需要让asp.net应用程序对用户留有一定有自定义空间,例如用户要对页面使用自己定义的样式表或标题,可以使用下面的方法来动态指定: 首先对aspx文件中
如果需要让asp.net应用程序对用户留有一定有自定义空间,例如用户要对页面使用自己定义的样式表或标题,可以使用下面的方法来动态指定:
首先对aspx文件中<head>中的页面标题和样式表进行修改
visual studio 生成的代码:
<title>webform1</title>
<link ref="stylesheet" type="text/css" href="control.css">
修改后的代码:
<title runat="server" id="title1">webform1</title>
<link id="link1" runat="server" type=text/css" ref="stylesheet"></link>
我们将这两个html元素都加上runat=server,标记为服务器端控件以使我们能在服务器代码对其进行访问。

在webform1.aspx.cs文件,我们就可以使用c#代码来对其将行控制
private void button1_click(object sender,system.eventargs e)
{
control ctrl=page.findcontrol("title1"); //寻找我们刚才修改为runat=server的那个title
((htmlgenericcontrol)ctrl).innertext="hello";
ctrl=page.findcontrol("link1");
((htmlgenericcontrol)ctrl).attributes.add("href","control.css");

}

通过以上步骤即可实现动态改变asp.net页面标题和动态指定页面样式表