Re: Problem starting windows forms application from ASP.Net 2.0
- From: "Quille" <nomail@xxxxxxxxxxxx>
- Date: Mon, 28 Aug 2006 20:45:47 +0200
Hi again !
"MikeS" <michael.spencer@xxxxxxxxx> wrote in message
news:1156712189.595098.155730@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
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.
Actaully I'm trying to make folowing scenarios to work:
1.) Machine (Server) running program ("Player") similar to powerpoint that
uses managed directx for display that software is controled using asp.net
web site and remoting.
In this scenario user can open "Player" on one monitor and IE containig UI
on another monitor.
In this scenario I'm able to start player from web ui and everything works
fine
2.) Machine (Server) running "Player" and Machine(Client) running IE
containing UI for Player
In this scenario I can't start player from web UI and I would like to make
it possible...
Anyway thanks for comments...
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
Goran
.
- Follow-Ups:
- References:
- Problem starting windows forms application from ASP.Net 2.0
- From: Quille
- Re: Problem starting windows forms application from ASP.Net 2.0
- From: MikeS
- Re: Problem starting windows forms application from ASP.Net 2.0
- From: Quille
- Re: Problem starting windows forms application from ASP.Net 2.0
- From: MikeS
- Problem starting windows forms application from ASP.Net 2.0
- Prev by Date: Re: Forms Authentication Problem
- Next by Date: Re: Problem starting windows forms application from ASP.Net 2.0
- Previous by thread: Re: Problem starting windows forms application from ASP.Net 2.0
- Next by thread: Re: Problem starting windows forms application from ASP.Net 2.0
- Index(es):
Relevant Pages
|
|