동적 수정 페이지 제목, 키워드 및 설명 등 정보

506 단어 ASP.NETweb
HtmlHead head = this.Header;//  Head   
head.Title = dr["web_title"].ToString();  

HtmlMeta WebKeyWords = new HtmlMeta();//  Meta   
WebKeyWords.Name = "KeyWords";
WebKeyWords.Content = dr["web_keywords"].ToString();

head.Controls.Add(WebKeyWords); // head   Meta  

HtmlMeta WebDescription = new HtmlMeta();
WebDescription.Name = "Description";
WebDescription.Content = dr["web_description"].ToString();

head.Controls.Add(WebDescription);

좋은 웹페이지 즐겨찾기