我使用C#,asp.net作爲工具。如何在打開文檔的同時打開任何應用程序(如word,pdf閱讀器)的打印對話框,以編程方式
我使用以下代碼在客戶端傳輸和打開文件,並希望在打開客戶端文檔的同時打開任何應用程序(如word,pdf閱讀器)的內置打印對話框。
if (lfileFormat.ToUpper() == "Excel")
{
Response.ContentType = "application/vnd.ms-excel";
}
else if (lfileFormat.ToUpper() == "PDF")
{
Response.ContentType = "application/pdf";
}
else if (lfileFormat.ToUpper() == "HTML")
{
Response.ContentType = "text/HTML";
}
Response.AddHeader("Content-Disposition", string.Format("attachment; filename = {0}", fi.Name));
Response.AddHeader("Content-Length", fi.Length.ToString());
Response.TransmitFile(fi.FullName);
Response.End();
爲什麼比較了'TOUPPER()'價值的東西寫在混合大小寫? – Vogel612