Javascript Asp.net核心如何将html文件字节[]加载到iframe src视图

Javascript Asp.net核心如何将html文件字节[]加载到iframe src视图,javascript,jquery,html,asp.net,iframe,Javascript,Jquery,Html,Asp.net,Iframe,我要将.html文件(字节[])从数据库加载到html元素 public byte[] file { get; set; } 我确实尝试过,但失败了: public FileResult QuestionHTML(byte[] requestFile) { byte[] file = requestFile; return File(file, "application/html"); } 然后在视图cshtml

我要将.html文件(字节[])从数据库加载到