tehon3299
Centurion
I am wondering how to fire DOS Commands from an ASPX page? What would the syntax to like ping or something?
Thanks
Thanks
Dim command As String = "ping 192.168.1.1"
System.Diagnostics.Process.Start(command)
Not that easily, however. Takes a few dozen lines of code, at best. Of course you can head over to Google and find a class that does it for you, but hey, most people can't even find their car keys, nevermind something on the *gasp* internet. One of us should put a ping class on the list of things to add to the Code Library.you can do it from right within .net