建设网站元素搜索引擎,做游戏的网站有哪些,咨询公司注册经营范围,安卓手机app1.使用Literal控件。 Literal与Label非常相似#xff0c;区别在于Label会在输出后加上span/span标记#xff0c;而Literal不会添加任何多余的标记。看代码#xff1a; 前台#xff1a; asp:Literal IDltPageTitle runatserver… 1.使用Literal控件。 Literal与Label非常相似区别在于Label会在输出后加上span/span标记而Literal不会添加任何多余的标记。看代码 前台 asp:Literal IDltPageTitle runatserver / asp:Literal IDltPagekeywords runatserver / asp:Literal IDltPagedescrip tion runatserver /
后台
ltPageTitle.Text title页面标题/title;
ltPagekeywords.Text namekeywords content关键词;
ltPagedescrip tion.Text namedescrip tion content内容描述; 效果一定会让你满意的 2.
使用H t m l M e t a类
设置Title this .Header.Title 这是个Title测试 ; 如果用了MasterPage可以这样用 this .Page.Title SiteMap.CurrentNode.Title; 动态设置Style Style style new Style();style.ForeColor System.Drawing.Color.Navy;style.BackColor System.Drawing.Color.LightGray; // Add the style to the header for the body of the page this .Header.StyleSheet.CreateStyleRule(style, null , body ); 动态加样式表 HtmlLink link new HtmlLink();link.Attributes.Add( type , text/css );link.Attributes.Add( rel , stylesheet );link.Attributes.Add( href , ~/newstyle.css ); this .Header.Controls.Add(link); 动态加meta tags // Render: meta namekeywords contentSome words listed here / HtmlMeta meta new HtmlMeta();meta.Name keywords ;meta.Content Some words listed here ; this .Header.Controls.Add(meta); // Render: meta namerobots contentnoindex / meta new HtmlMeta();meta.Name robots ;meta.Content noindex ; this .Header.Controls.Add(meta); // Render: meta namedate content2006-03-25 schemeYYYY-MM-DD / meta new HtmlMeta();meta.Name date ;meta.Content DateTime.Now.ToString( yyyy-MM-dd );meta.Scheme YYYY-MM-DD ; this .Header.Controls.Add(meta);