日期:2014-05-19  浏览次数:20363 次

怎样在后台设置生成页面的meta中的Keyword和Description?
怎样在后台设置生成页面的meta中的Keyword和Description?
用哪个模块来处理呢?

------解决方案--------------------
HtmlGenericControl metaTest = new HtmlGenericControl( "META ");
metaTest.Attributes[ "Keyword "]= "test keyword ";
metaTest.Attributes[ "Description "]= "this is Meta description ";
this.Controls.AddAt(0,metaTest);