Connecting Tech Pros Worldwide Forums | Help | Site Map

Internet Explorer prompts users with two open/save as dialogs

David Perez
Guest
 
Posts: n/a
#1: Sep 28 '05
Hello.

I have a problem with my Web Application in VB.NET and aspx pages. I try to
open a SaveDialog window, to open or save a document when user clicl on a
button, and Internet Explorer prompts users with two open/save as dialogs.
this happens only when select "Open" button.

This issue is commented in this articles:

http://mosley.arach.net.au/dev/docs/save%20as.htm
http://support.microsoft.com/default.aspx/kb/238588


Here is the portion of code I use to do this, but the problem still appears:

Response.Clear()
Response.ClearContent()
Response.ClearHeaders()
Response.ContentType = "application/msword"
Response.AddHeader("content-disposition",
"attachment;filename=test.mht")
Response.Write(stm.ReadText().ToString())
Response.Flush()
Response.Close()

This error also appears if the document is .pdf type. Has anyone any idea to
solve this problem?

Thanks a lot.

Cheers.......David

David Perez
Guest
 
Posts: n/a
#2: Sep 28 '05

re: Internet Explorer prompts users with two open/save as dialogs


My IE version is 6.0.3790.0

Thanks again.

"David Perez" wrote:
[color=blue]
> Hello.
>
> I have a problem with my Web Application in VB.NET and aspx pages. I try to
> open a SaveDialog window, to open or save a document when user clicl on a
> button, and Internet Explorer prompts users with two open/save as dialogs.
> this happens only when select "Open" button.
>
> This issue is commented in this articles:
>
> http://mosley.arach.net.au/dev/docs/save%20as.htm
> http://support.microsoft.com/default.aspx/kb/238588
>
>
> Here is the portion of code I use to do this, but the problem still appears:
>
> Response.Clear()
> Response.ClearContent()
> Response.ClearHeaders()
> Response.ContentType = "application/msword"
> Response.AddHeader("content-disposition",
> "attachment;filename=test.mht")
> Response.Write(stm.ReadText().ToString())
> Response.Flush()
> Response.Close()
>
> This error also appears if the document is .pdf type. Has anyone any idea to
> solve this problem?
>
> Thanks a lot.
>
> Cheers.......David[/color]
Closed Thread