求助~~~C#winform 用WebBrowser控件 怎么打开debug上的html文件
2个回答
展开全部
同个问题怎么提问2次呢?
//打开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");
//打开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");
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询