本文介绍了如何从文件上传中打开文档文件哪些代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
亲爱的所有人,
如何从文件上传中打开文档文件,其代码为
Dear All,
How to open document file from fileupload which code
推荐答案
using System.Diagnostics;
在button_click事件上,编写以下代码:
on the button_click event write the following code:
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "WINWORD.EXE";
startInfo.Arguments = FileUpload1.FileName;;
Process.Start(startInfo);
谢谢,
Arshad
Thanks,
Arshad
这篇关于如何从文件上传中打开文档文件哪些代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!