本文介绍了打开PPTX但丢失了原始的aspx页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
要打开PowerPoint文件,我使用了以下代码:
System.Diagnostics.Process.Start(myFile.pptx);
它有效,但我输了原始的aspx页面。如何解决这个问题呢?谢谢。
To open a PowerPoint file, I used the code:
System.Diagnostics.Process.Start("myFile.pptx");
It works but I lost the original aspx page. How to solve this problem? Thanks.
推荐答案
System.Diagnostics.Process.Start("myfile.pptx");
RegisterStartupScript("xxx", "window.open('myPage.aspx');");
谢谢。
Thanks.
这篇关于打开PPTX但丢失了原始的aspx页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!