I am trying to open a Word document and Excel document from a dialog web
page, what's the best way to do that?
I have tried the following:
Response.Clear();
Response.AddHeader("Content-Disposition", "attachment; filename=" +
file.Name);
Response.AddHeader("Content-Length", file.Length.ToString());
Response.ContentType = "application/octet-stream";
Response.WriteFile(file.FullName);
Response.End();
but I am getting the following error message.
Unable to evaluate expression because the code is optimized or a native
frame is on top of the call stack.
Thank You
Peter
Regarding on the open excel file in dialog page issue, would you provide
some further information such as how to open the dialog page and whether
the dialog page's url is the page that write out excel file or if the
dialog page want to open another page that write out excel file?
Based on my understanding, if the dialog page directy point to the excel
page, it may cause problem due to the client-side browser's dialog model.
Is there any particular requirement that you need to open excel file in
dialog pgae?
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
msd...@microsoft.com.
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>From: "Peter" <czu...@nospam.nospam>
>Subject: Open Word Document from a Dialog Web Page
>Date: Wed, 30 Apr 2008 23:00:55 -0500
"Steven Cheng [MSFT]" <stc...@online.microsoft.com> wrote in message
news:7k7oiY2q...@TK2MSFTNGHUB02.phx.gbl...
--
---------------------------------------------------
S.M. Altaf [MVP]
http://www.mendhak.com/
"Peter" <czu...@nospam.nospam> wrote in message
news:Om7IoI4q...@TK2MSFTNGP06.phx.gbl...
"S.M. Altaf [MVP]" <sma...@mNOSPAMsn.com> wrote in message
news:AFCD26C4-B9B5-4CE3...@microsoft.com...
"Peter" <czu...@nospam.nospam> wrote in message
news:Onvw5V8...@TK2MSFTNGP02.phx.gbl...
Does the problem definite occur? Based on my test, though the modal dialog
may not display the output word/excel document correct, it will not report
exception at server-side(the Response.End code should get executed
correctly). Is it also specific to a certain office document? You can try
write out a very simple word or excel document to see whether the problem
occurs.
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
msd...@microsoft.com.
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>From: "Peter" <czu...@nospam.nospam>
>References: <u8rL2$zqIHA...@TK2MSFTNGP02.phx.gbl>
<7k7oiY2q...@TK2MSFTNGHUB02.phx.gbl>
<Om7IoI4q...@TK2MSFTNGP06.phx.gbl>
<AFCD26C4-B9B5-4CE3...@microsoft.com>
>Subject: Re: Open Word Document from a Dialog Web Page
>Date: Thu, 1 May 2008 14:56:39 -0500
string officeDocScript = "<div>"
+ "<iframe width=\"75%\" height=\"55%\" name=\"fframe\" src=\"" +
filePath + "\">"
+ "<embed src=\"" + filePath + "\">"
+ "</iframe></div>";
"Steven Cheng [MSFT]" <stc...@online.microsoft.com> wrote in message
news:XOOFTOAr...@TK2MSFTNGHUB02.phx.gbl...