This is my code..
Dim strpath As String = Server.MapPath("~/Images")
strpath = strpath + "2_type_a.jpg"
Dim myprocess As New System.Diagnostics.Process
myprocess.StartInfo.FileName = "mspaint"
myprocess.StartInfo.Arguments = strpath
myprocess.Start()
When i check the strpath it shows correct path ie:
"C:\Documents and Settings\User\Desktop\Maitreya\Images\2_type_a.jpg"
But at last it shows this C:/Document.bmp was not found
