To Access Notepad, calculator through asp.net

前端 未结 6 853
孤街浪徒
孤街浪徒 2021-01-23 15:47

I m trying to open Notepad, Calculator in button click in asp.net with code behind C#. I tried with the code

 System.Diagnostics.Process.Start(\"c:\\\\windows\\\         


        
6条回答
  •  [愿得一人]
    2021-01-23 16:07

    This Can be possible by using below code on click of server button or Link. System.Diagnostics.Process.Start("notepad.exe");

提交回复
热议问题