This is my first post,
On click of asp.net button, i want to run .exe in client pc, the problem is i dont know where that .exe file is instaled in client pc, but it will be installed in c:program files or D:program files, some thing like i wont to open open notepad in client pc on click of asp.net button, I have tried this but it is not at all working nor giving error
Dim p As System.Diagnostics.Process
p = System.Diagnostics.Process.Start("notepad")
p.WaitForExit()
Thx in advance