Good morning, when pulling the html from the entire page in string it also brings some reference links:
<link href="~/Content/item/item.min.css" rel="stylesheet" />
I've already removed the tags and, but I need to remove this and I'm not getting it, the code I use to remove the script and style tags is this:
var regex = new Regex("(\<script(.+?)\</script\>)|(\<style(.+?)\</style\>)",
RegexOptions.Singleline | RegexOptions.IgnoreCase);
HTMLemString = regex.Replace(HTMLemString, "");
If someone can help me, I appreciate it.