如何阅读HTML段落并与带有字符串值的文本结合?

时间:2013-09-16 11:34:13

标签: html asp.net string

我有一个类似“此商品属于company1”的字符串

我有一个HTML页面,其中有一段“这是固定的部分。”

我想阅读HTML页面段落并将文本与我的字符串结合起来。

怎么可能有人请帮助我......

2 个答案:

答案 0 :(得分:0)

取决于你想要如何组合它

1-如果您希望此字符串位于HTML的开头,则可以轻松使用以下内容:

string data=html.Replace("<p>",stringValue);

2-如果你想在html的末尾组合它,那么使用以下

string data=html.Replace("</p>",stringValue);

如果你想单独保持html和字符串值,那么

string data= html + stringValue 
希望它会对你有所帮助 问候

答案 1 :(得分:0)

StreamReader reader = new StreamReader(Server.MapPath("~/HTMLPage.htm")); 
string readFile = reader.ReadToEnd();