Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 VS2010 的解决方案中添加了一个 HTML 文件。如何创建打开 HTML 文件的调用?例如,当用户单击按钮时,它将在我的解决方案中找到 HTML 文件并在 Web 浏览器中打开它。
你可以使用网络浏览器控制
webbrowser.Navigate("File location.html")
有关更多信息,请参见此处
System.Diagnostics.Process.Start( Server.MapPath("~/HtmlFileFolderNameInSolution/") + "HtmlFileName.htm" );
这将在同一浏览器的新选项卡中打开 HTML 文件...