如果有人在我網站的產品頁面上,我想覆蓋元描述標記。C#替換這些標記之間的所有內容
<meta name="description" content=" " />
我使用的CMS已在此代碼預渲染它的頁面模板的方法:
this.ltlTags.Text = this.HeaderTags;
這種填充與meta標籤,CSS標籤,腳本代碼和所有的頭。
我想說的是這樣的:
this.ltlTags.Text = this.HeaderTags.Replace(
"everything inside the content attribute of the meta tag", "with this text");
在C#中有什麼辦法,我可以做到這一點?
我不確定你提供了足夠的信息來回答這個問題。 'this.HeaderTags'是什麼?如果它包含多個標籤,它們是如何分隔的等等? – 2011-04-14 14:57:29