我有一个场景,当任何请求失败时,我需要导航到我自己的自定义 html 页面。我面临的问题是我有一个背景图像,需要与自定义 html 页面一起显示。
我已经实现了如下代码:
CustomHtmlDoc = "<html><head></head><body background=\"{0}\"; oncontextmenu='return false;'><br><br></br></br><hr><h4 style='font-family:Footlight MT Light;color:red;font-size:20px;'>" + "ErrorMessage" + "</h4><h4 style='font-family:Footlight MT Light;color:red;font-size:25px;'>Please Verify the Configured URL from Dashboard Configuration</h4> <hr></body></html>";
string CustomHtmlDocument = string.Format(CustomHtmlDoc,AppDomain.CurrentDomain.BaseDirectory + "AdministrationUIBrowser\\AdministrationUIBrowserFactory\\ErrorBackground.png");
WebBrowserControlView.DocumentText = CustomHtmlDocument;
当我尝试在本地运行场景时,我能够将错误页面作为背景。但是在部署端,我只是得到只有内容而没有任何背景图像的空白屏幕。我的是一个 WPF 应用程序。