我想将 html 内容从页面后面的 asp.net 代码分配给 iframe 控件;
这工作正常 myIframe.Attributes.Add("src", "pathtofilewith.html"); 但是,我不想给出要显示的 html 文件的路径,我只想将一些来自数据库的 html 内容分配给 iframe 控件。
我希望这样的东西(Ashok)显示在 iframe 控件中
我尝试了以下方法,但没有任何成功
myIframe.Attributes["innerHTML"] = "<h1>Thank You..</h1>";
myIframe.Attributes.Add("innerHTML", "<h1>Ashok</h1>");