Re: Problem starting windows forms application from ASP.Net 2.0
OK, well if it is all going to run client side, then why not run it all
client side, controls and or code in the browser not on the server.
For example:
http://www.15seconds.com/issue/030610.htm
Then you might just use Process.Start without needing impersonation.
From a Full Trust site, this works for me...
<object id="UserControl1"
classid="http:WindowsControlLibrary1.dll#WindowsControlLibrary1.UserControl1"
height="0" width="0"> </object>
Private Sub UserControl1_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Dim psi As New ProcessStartInfo("calc.exe")
Process.Start(psi)
End Sub
.
Relevant Pages
- Re: Attempt to de-mystify AJAX
... > conviction when we know the client is leading ... > code into the browser that it's now just as thick as anything people ... > 1) IT used to think BUI development was easy. ... > 2) Therefore IT people advocated thin client. ... (comp.databases.pick) - Re: access only to one external site
... Is the firewall client installed on the client? ... Is the browser configured to use a proxy or not? ... If you can send a zipped print screen of the Destination Set definition it ... (microsoft.public.isa.configuration) - Re: Why 64bit Delphi compiler from Borland may be meaningless!
... "We had to make a choice with the 64-bit client as to which browser, ... our decision was swayed by the lack of 64-bit native controls. ... was difficult to use because web sites hadn't authored common controls ... (borland.public.delphi.non-technical) - Re: Pure client-side javscript database?
... the individual asking the question in their single context. ... in the current browser instance and a respondent assumes the question ... >>> that the client may download an application from a server ... >>> server, but the APPLICATION may or may not be. ... (comp.lang.javascript) - Re: Still Need desperate help to start with ASP NET - simplified problems - HELP!!
... Now you can process the entered arguments at startup. ... browser and program so that you can leave all the client server ... back to IIS to send to the client you are going to have to find out ... (microsoft.public.dotnet.framework.aspnet) |
|