Click here to Skip to main content
15,885,216 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
System.Diagnostics.Process.Start("wmplayer.exe", e.CommandArgument)
does not start wmplayer with the file passed from iis. any suggestions or help? need it urgently working
Posted

1 solution

If this is in your ASP.NET code, you just opened Windows Media Player on the server NOT the client.

All ASP.NET code runs server-side, not on the client. You cannot use Process.Start to launch anything on the client. You just have to send the content and the client should determine what to do with it itself.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900