Problem with HTA streaming data to client

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Problem with HTA streaming data to client

    Hi,
    I've an .aspx page which I call from a .hta in IE6 (so I can get rid of the
    window control buttons etc)

    When I call the .aspx page directly and run the code below all is fine but
    when I call it from the .hta, the code below just hangs.
    Any hints are greatly appreciated!
    Thanks for your efforts!

    Martin

    Response.ContentType = "text/richtext"
    Response.AddHeader("content-disposition", "attachment; filename=""" &
    filename & """")
    'Write the file directly to the HTTP output stream.
    Response.Write(RTFContent)
    Response.End()


    Martin Feuersteiner Guest

  2. Similar Questions and Discussions

    1. Deployment problem - unable to access data when hostingtomcat on different machine than the client
      Hi, I am developing a flex application that uses servlets to retrieve data from the database and generates graphs. During development, I had the...
    2. streaming recorded media by a client
      In this way, a client does not have to upload media files to an FMS server. He could store it on his local harddisk, and when he plays it,...
    3. streaming data connectivity
      I'm working with a digital pen platform a would like to make some demos using Flash. I can see that it's easy to grab external data and bring it in...
    4. Large Data Streaming from Web Sevice to Client
      I want to create a search usecase on Client which will bring large data from webservice to the client. I am returning DataSet from the web service....
    5. Example of Streaming response to client???
      Could you give me an example of streaming a page to the client? Thanks. Larry Woods
  3. #2

    Default Re: Problem with HTA streaming data to client

    Hi Martin,

    Can you give us any idea what this has to do with adonet?

    Cor


    Cor Ligthert Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139