In my controller, I have the following to send HTML snippet stored in CSHTML files to the front.
public FileResult htmlSnippet(string fileName)
{
string contentType = "text/html";
return new FilePathResult(fileName, contentType);
}
The fileName looks like the following:
/file/abc.cshtml
What troubles me now is that these HTML snippet files have Spanish characters and they don't look right when they are displayed in pages.
Thanks and regards.