你好,请问C# Winform程序,如何用WebBrowser打开程序所在bin文件夹下的html网页文件。
我按照webBrowser1.Navigate(Application.StartupPath+"/showmap.html");这样的代码,没办法加载啊,,白板,,呜呜...
我按照
webBrowser1.Navigate(Application.StartupPath + "/show map.html");
这样的代码,没办法加载啊,,白板,,呜呜,,好捉急啊,求好人帮助~~ 展开
webBrowser1.Navigate(Application.StartupPath + "/show map.html");
这样的代码,没办法加载啊,,白板,,呜呜,,好捉急啊,求好人帮助~~ 展开
2个回答
展开全部
写错了,webBrowser1.Navigate(Application.StartupPath + "\\showmap.html");
网页文件名不要空格或者有特殊符号。
另外Application.StartupPath指的是你的exe所在目录,在vs中它指的实际上是你的bin下的debug或者release文件夹,所以这个html也要放在debug下。
网页文件名不要空格或者有特殊符号。
另外Application.StartupPath指的是你的exe所在目录,在vs中它指的实际上是你的bin下的debug或者release文件夹,所以这个html也要放在debug下。
追问
谢谢你,祝身体健康、万事如意!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
//打开bin\debug下面的网页
webBrowser1.Navigate(Application.StartupPath + @"/show map.html"); //@为转义符
//打开bin下面的网页
string str_path = Application.StartupPath;
str_path = str_path.Substring(0, str_path.IndexOf("\\Debug"));
webBrowser1.Navigate(str_path + @"\show map.html");
webBrowser1.Navigate(Application.StartupPath + @"/show map.html"); //@为转义符
//打开bin下面的网页
string str_path = Application.StartupPath;
str_path = str_path.Substring(0, str_path.IndexOf("\\Debug"));
webBrowser1.Navigate(str_path + @"\show map.html");
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询