Peter Stanford
Member
I can launch an application from VB.NET (VS2003) but the same code merely refreshes the browser window in ASP.NET, for example:
Process.Start ("C:\Inetpub\wwwroot\ScottQualityControl\QP_050_files\ArtefactionCorporateProfile.pdf")
NB: This is all on a single line in the application
The file is physically in the correct place, the correct namespaces have been declared, i.e.
Imports System
Imports System.Diagnostics
Imports System.ComponentModel
What is different about launching an application from a Windows Client and an ASPX page?
Process.Start ("C:\Inetpub\wwwroot\ScottQualityControl\QP_050_files\ArtefactionCorporateProfile.pdf")
NB: This is all on a single line in the application
The file is physically in the correct place, the correct namespaces have been declared, i.e.
Imports System
Imports System.Diagnostics
Imports System.ComponentModel
What is different about launching an application from a Windows Client and an ASPX page?