I have some training modules which I want to load from my MVC site (SSL). I am trying run them as following but it does not load their css and images. Also I am not sure if it will let me to move to other html pages with in the same module by clicking the links on index.html.
Can anyone please suggest me a batter way of doing?
public ActionResult DisplayModule(string path)
{
return new FilePathResult(path, "text/html");
}
Thanks in Advance.