日期:2014-05-20  浏览次数:20493 次

请问:调用window画图功能请问怎样实现?
请看下面代码,请问那错了,为什么打不开呢?
<script   runat= "server ">
protected   void   clickbutton1(Object   sender,   EventArgs   e)
{
        System.Diagnostics.Process   process;
        process   =   new   Process();
        process.StartInfo.FileName   =   "mspaint.exe ";              
        process.Start();
}
</script>


------解决方案--------------------
晕倒,为什么要在服务器端调用画图程序?要画图可以用System.Drawing命名空间下的类。