基本上,这就是场景。我创建了移动优化的 ASP.NET(3.5 框架)应用程序,并添加了一个链接,用于将 xml 文件下载到在 comapct 框架 5.0 操作系统上运行的摩托罗拉 GUN。
文件下载逻辑在台式机/笔记本电脑上工作正常,但在 Windows CE 设备上而不是下载文件。它在 IE 浏览器中打开 xml 文件。
我在这里需要专家帮助:)
基本上,这就是场景。我创建了移动优化的 ASP.NET(3.5 框架)应用程序,并添加了一个链接,用于将 xml 文件下载到在 comapct 框架 5.0 操作系统上运行的摩托罗拉 GUN。
文件下载逻辑在台式机/笔记本电脑上工作正常,但在 Windows CE 设备上而不是下载文件。它在 IE 浏览器中打开 xml 文件。
我在这里需要专家帮助:)
该设备将处理其设计的文件。
您可以尝试将文件作为八位字节流发送。
这是我不久前做过的类似事情,但我不确定它是否适用于移动设备:
if (!String.IsNullOrEmpty(nameOnly)) {
string filename = Server.MapPath(nameOnly);
if (!String.IsNullOrEmpty(filename)) {
try {
Response.Buffer = false;
Response.Clear(); // clear the buffer
Response.Cache.SetCacheability(HttpCacheability.NoCache);
if (-1 < filename.IndexOf(".avi")) {
Response.ContentType = "video/x-msvideo";
} else if (-1 < filename.IndexOf(".pdf")) {
Response.ContentType = "Application/pdf";
} else if (-1 < filename.IndexOf(".rar")) {
Response.ContentType = "Application/x-rar-compressed";
} else {
Response.ContentType = "Application/octet-stream";
}
FileInfo file = new FileInfo(filename);
Response.AddHeader("Content-Disposition", "attachment; filename=" + nameOnly);
Response.AddHeader("Content-Length", file.Length.ToString());
Response.WriteFile(file.FullName);
} catch (Exception err) {
outputLine = err.Message;
} finally {
Response.Flush();
}
} else {
outputLine = string.Format("Server was unable to locate file \"{0}\".", nameOnly);
}
}