I'm trying to use the desktop class in client/server application.
I want the default browser to open on the client side when the client clicks on a button. What happens is that the browser opens on the server. How can I fix it?
Thanks
I'm trying to use the desktop class in client/server application.
I want the default browser to open on the client side when the client clicks on a button. What happens is that the browser opens on the server. How can I fix it?
Thanks
Its browser specific,
Fiddle with the following setting, in IE:
Change the settings in IE to open a new window. As you pointed out the settings is available in
Tools->Internet Options->Advanced->Reuse Windows for shortcuts
Its browser specific,
Fiddle with the following setting, in IE:
Change the settings in IE to open a new window. As you pointed out the settings is available in
Tools->Internet Options->Advanced->Reuse Windows for shortcuts
Check this answer
If you call any Desktop
method on the server, then of course the reaction will occur on the server.
If you want a window to pop up on the client, then call the method on the client.
What kind of client are you using?
If you're using a rich Java client, then that change should be relatively easy.