Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Open Word Document from a Dialog Web Page

1 view
Skip to first unread message

Peter

unread,
May 1, 2008, 12:00:55 AM5/1/08
to
ASP.NET 2.0

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


Steven Cheng [MSFT]

unread,
May 1, 2008, 4:33:58 AM5/1/08
to
Hi 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

Peter

unread,
May 1, 2008, 7:54:46 AM5/1/08
to
I have a dialog page and on that page is a submitt button, when a user
clicks on the submit button I want to open a Word or Excel file.
The Word or Excel file already exitst on the web server.

"Steven Cheng [MSFT]" <stc...@online.microsoft.com> wrote in message
news:7k7oiY2q...@TK2MSFTNGHUB02.phx.gbl...

S.M. Altaf [MVP]

unread,
May 1, 2008, 3:09:43 PM5/1/08
to
Are you attempting to execute any code after the Response.End()?

--
---------------------------------------------------
S.M. Altaf [MVP]
http://www.mendhak.com/


"Peter" <czu...@nospam.nospam> wrote in message
news:Om7IoI4q...@TK2MSFTNGP06.phx.gbl...

Peter

unread,
May 1, 2008, 3:56:39 PM5/1/08
to
Yes, but the error occurs on the Response.End();

"S.M. Altaf [MVP]" <sma...@mNOSPAMsn.com> wrote in message
news:AFCD26C4-B9B5-4CE3...@microsoft.com...

Fernando Rodriguez, MCP

unread,
May 1, 2008, 9:05:49 PM5/1/08
to
Can u post the stack trace of the error?

"Peter" <czu...@nospam.nospam> wrote in message

news:Onvw5V8...@TK2MSFTNGP02.phx.gbl...

Steven Cheng [MSFT]

unread,
May 1, 2008, 11:21:03 PM5/1/08
to
Hi Peter,

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

Peter

unread,
May 2, 2008, 3:22:28 PM5/2/08
to
I've used iframe instead and it works fine.

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...

0 new messages