I have image tag in my html like img src="/images/image.jpg"
.
I want it like src="mydomain.com/images/image.jpg"
So I want to replace all src="/
to src="mydomain.com/.
I tried this
string repto = "src=\"/" + strLink.HRef + "/";
strEncode.Replace("src=\"/", repto);
strEncode contains my html. I tried many ways but nothing is working. Please help, if any body has any idea about this. Thanks