Ask a Question related to ASP.NET General, Design and Development.
-
John Wright #1
Starting a desktop app from ASP.NET
I am trying to spawn a seperate process from my asp page
so when a user clicks the link or button a desktop program
is launched. This will be on an intranet and the program
will exist on the users desktop. I can use the following
code in webmatrix to run a process on my local machine:
<%@ Page Language="VB" %>
<script runat="server">
' Insert page code here
'
Sub Button1_Click(sender As Object, e As EventArgs)
Dim startInfo As System.Diagnostics.ProcessStartInfo
startInfo = New
System.Diagnostics.ProcessStartInfo()
Dim p As System.Diagnostics.Process = New
System.Diagnostics.Process()
startInfo.FileName = "c:\8133324.txt"
startInfo.WindowStyle =
System.Diagnostics.ProcessWindowStyle.Normal
p.Start("c:\winnt\notepad.exe")
End Sub
</script>
<html>
<head>
</head>
<body>
<form runat="server">
<asp:Button id="Button1" onclick="Button1_Click"
runat="server" Text="Button"></asp:Button>
<!-- Insert content here -->
</form>
</body>
</html>
But in .NET Studio running on IIS the process doesn't
spawn. I have tried the following code:
Dim startInfo As New ProcessStartInfo("IExplore.exe")
startInfo.WindowStyle = ProcessWindowStyle.Normal
Process.Start(startInfo)
in a button click event, but nothing happens. Any help
would be greatly appreciated.
(Please send VB code, I know C# but this shop uses VB.NET
only)
John
John Wright Guest
-
desktop exe cam app
Hi Guys and Girls, Im having a bit of a problem creating a stand alone cam exe projector that talks to my remote media server which in turn talks... -
Remote Desktop
HI I need help again. Again I do not want to pay the 100 dollars for technical support so someone help me. I have a computer running windows XP and... -
Desktop icons
Linda, Have you tried resetting the file associations? John "Linda Rathgeber" <lightly@sc.rr.com> wrote in message... -
Desktop
How can I reduce all open windows so that only the desktop is visible? Is there a shortcut key? In Windows one simply clicks on the icon 'show... -
Desktop shortcut
* Pim Versteeg : Perhaps this is not a very timely reply... but I use a nifty little app called "Show Desktop". It sits in the dock and one click... -
Eric Sabine #2
Re: Starting a desktop app from ASP.NET
Are you trying to launch notepad per your example or a .net application. If
the latter, what you're talking about is href exe, a very neat feature of
..net. You should probably search msdn and the windows application .net
newsgroups.
hth
Eric
"John Wright" <johnathan.w.wright@l-3com.com> wrote in message
news:OcCSoBzRDHA.1576@TK2MSFTNGP12.phx.gbl...> I am trying to spawn a seperate process from my asp page
> so when a user clicks the link or button a desktop program
> is launched. This will be on an intranet and the program
> will exist on the users desktop. I can use the following
> code in webmatrix to run a process on my local machine:
>
> <%@ Page Language="VB" %>
> <script runat="server">
>
> ' Insert page code here
> '
>
> Sub Button1_Click(sender As Object, e As EventArgs)
> Dim startInfo As System.Diagnostics.ProcessStartInfo
> startInfo = New
> System.Diagnostics.ProcessStartInfo()
> Dim p As System.Diagnostics.Process = New
> System.Diagnostics.Process()
> startInfo.FileName = "c:\8133324.txt"
> startInfo.WindowStyle =
> System.Diagnostics.ProcessWindowStyle.Normal
> p.Start("c:\winnt\notepad.exe")
> End Sub
>
> </script>
> <html>
> <head>
> </head>
> <body>
> <form runat="server">
> <asp:Button id="Button1" onclick="Button1_Click"
> runat="server" Text="Button"></asp:Button>
> <!-- Insert content here -->
> </form>
> </body>
> </html>
>
>
> But in .NET Studio running on IIS the process doesn't
> spawn. I have tried the following code:
>
> Dim startInfo As New ProcessStartInfo("IExplore.exe")
> startInfo.WindowStyle = ProcessWindowStyle.Normal
> Process.Start(startInfo)
>
> in a button click event, but nothing happens. Any help
> would be greatly appreciated.
> (Please send VB code, I know C# but this shop uses VB.NET
> only)
> John
>
>
Eric Sabine Guest



Reply With Quote

