Hi,
I setup a webserver, and I login my website with N77 web browser, the following is the work flow:
1. There is a button on my website
2. I click it, my web site will send N77 web browser a MIME and a file
3. N77 will run my S60 app according to the MIME
4. Exit my S60 app, and click the button on websit agin
All the things work good before 4th step, but when I click the button agin, web browser show:
General:
System error: (-21)
Unable download 'url.flv'
Following is my webserver code which send N77 MIME and file(C#):
Response.ContentType = "application/tftrig";
Response.AddHeader("Content-Disposition", "attachment; filename=\"url.flv\"");
Response.Write(String.Format(req, Request.QueryString["v"], Request.QueryString["t"]));
What happen? How to solve this problem?
Thank you!!

Reply With Quote

