我有行动:
[HttpGet]
public ActionResult GetMenuContentFileToDisplay(int menuItemId)
{
//......
return File(fileAttributes.FilePath, fileAttributes.InternetMediaType,
Uri.EscapeUriString(fileAttributes.FileName));
}
我想使用这种方法(允许您接收文件)在 iframe 中显示内容。是否可以为显示 HTM 文件实现此功能?
这部分是必要的,因为对用户隐藏文件结构并且需要检查文件权限。
我会很感激任何想法。