file download dialog coming twice
- From: "Vikram" <aa@aa>
- Date: Mon, 5 Dec 2005 16:45:09 +0530
i am using following code in button click... of asp.net code behind page
Response.Clear() 'clears the current output content from the buffer
Response.AppendHeader("Content-Disposition", _
"attachment; filename=Add2Calendar.vbs")
Response.AppendHeader("Content-Length", mStream.Length.ToString())
Response.ContentType = "application/download"
Response.BinaryWrite(mStream.ToArray())
Response.End()
but file download dialog comes twice if i select open at first time..
any solution to this
.
- Follow-Ups:
- Re: file download dialog coming twice
- From: Daniel Fisher\(lennybacon\)
- Re: file download dialog coming twice
- Prev by Date: WebPart Question
- Next by Date: Re: file download dialog coming twice
- Previous by thread: WebPart Question
- Next by thread: Re: file download dialog coming twice
- Index(es):
Relevant Pages
|