问题描述
我想通过点击一个按钮打开一个网址。
我尝试了什么
Dim url As String =https://www.google。 com
Dim omyURI As Uri
omyURI = New Uri(Url)
返回(omyURI)
网址在5个新浏览器中开放5次。
我的尝试:
Dim url As String =https://www.google。 com
Dim omyURI As Uri
omyURI = New Uri(Url)
返回(omyURI)
如何限制它在一个浏览器中打开它?
I am trying to open a url by clicking on a button .
what i have tried
Dim url As String = "https://www.google.com"
Dim omyURI As Uri
omyURI = New Uri(Url)
Return (omyURI )
The url is opening 5 times in 5 new browsers.
What I have tried:
Dim url As String = "https://www.google.com"
Dim omyURI As Uri
omyURI = New Uri(Url)
Return (omyURI )
How to restrict it to open one it in one browser?
推荐答案
这篇关于如何使用按钮打开网址的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!