Ticket Q396813
Visible to All Users
Duplicate

Push file to client (Q232026)

created 13 years ago

Hi,
I'm trying to achieve the same as asked in Q232026: start a file download in the browser as a result of a user pressing an action button. The code below execute OK and then I get an error message : "Thread was being aborted." Do you have any tips/tricks/code to avoid this problem?
        private void PushFile(string fileName, string type, string tempFileName)
        {
            //Push file to the user by placing it in the response
            HttpContext.Current.Response.ContentType = "application / x - msdownload";
            HttpContext.Current.Response.AddHeader("Content-Disposition", string.Format("attachment;filename={0}", fileName));
            HttpContext.Current.Response.WriteFile(tempFileName);
            HttpContext.Current.Response.End();
        }
regards,
Martin

Answers approved by DevExpress Support

created 13 years ago (modified 12 years ago)

Hello Martin,
Since you are now using 11.2, please set the IsPostBackRequired property for your Action to True as described at the end of eXpressApp Framework 11.2 ASP.NET Application Migration Guidelines.
If this does not make any difference, please provide us with a small sample project that demonstrates your issue.
Thanks,
Dennis

    Show previous comments (4)
    Anatol (DevExpress) 13 years ago

      Hello Martin,
      When the IsPostBackRequired property is set for the PopupWindowShowAction, this affects only the click that shows the popup window. So, this setting will not provide any benefits in your situation. The window is closed via the DialogOK action, so you need to set the IsPostBackRequired property of this action to raise a PostBack when the dialog's OK button is clicked. The file is downloaded correctly after this.
      Thanks,
      Anatol

        works perfectly now, thanks.
        Martin

        Anatol (DevExpress) 13 years ago

          You are welcome!
          Thanks,
          Anatol

          Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

          Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.