I am using web browser... in that i done with the cleanup coding of html....
after cleanup i get a final html.
i want to add head and title tag in final html... ???
please give me the solution.....
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Francis SusaimichaelPosted Feb 8, 2015, 3:49 AM
string strYourHTML = "Your html part goes here";
string strHTMLHeadPart = string.Concat(@"",
"
"");
string strHTML = string.Concat(strHTMLHeadPart, strYourHTML, " ");
Posted Feb 8, 2015, 3:22 AM
Francis SusaimichaelPosted Feb 7, 2015, 11:06 AM
string strYourHTML = "Your html part goes here ";
string strHTMLHeadPart = string.Concat(@"",
"
"",
"");
string strHTML = string.Concat(strHTMLHeadPart, strYourHTML, "");