winform中webbrowser控件设置成项目中的html地址

winform中webbrowser控件设置成项目中的html地址,第1张

WebBrowser wb = new WebBrowser()

wb.Url = new Uri("xxx.html", UriKind.Relative)

UriKind 是Uri的类型,标明相对或绝对路径,绝对路径要标注http://

下面代码会显示你所有的IP

如果有两个IP就会alert2次

<html>

<head>

<script language="JavaScript">

function GetLocalIPAddr(){

var oSetting = null

var ip = null

try{

oSetting = new ActiveXObject("rcbdyctl.Setting")

ip = oSetting.GetIPAddress

alert(ip)

if (ip.length == 0){

return "没有连接到Internet"

}

oSetting = null

}catch(e){

return ip

}

return ip

}

alert(GetLocalIPAddr())

</script>

</head>

<body>

</body>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7227733.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-03
下一篇 2023-04-03

发表评论

登录后才能评论

评论列表(0条)

保存