I have a project with model client-server by visual basic language code windows form. I create my server include all project code at iis server. From client computer (without include project code only UI) run program and i want to open web browser and access to any link. I have used process.start("url") and it run ok in local computer. But When i build code to .dll file and update to iis server it not run from client side.
Public Shared Sub TestOpenWeb(ByVal sender As WXSource, ByVal e As WXArgs)
Process.Start("iexplore.exe", "https://www.google.com/")
End Sub