Hi All,
Anyone know how to write code to run EXE file in ASP.NET.
FYI, im using VB.Net in my programming language. Thanks
Hi asrul,
Check with the below code.
Dim p As New Process() p.StartInfo.FileName = "D:\\yourapplication.exe" p.Start()
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.