No querystring neither file content for saving back a doc

No querystring neither file content for saving back a doc

Hi to all,
I have a problem saving a document when I call Writer's remote API.
First of all I make this request:

  1. https://exportwriter.zoho.com/remotedoc.im
  2. ?url=[my web site]/tmp1.doc
  3. &apikey=[my api key]
  4. &output=url
  5. &mode=normaledit
  6. &filename=tmp1.doc
  7. &lang=it
  8. &id=23234
  9. &format=doc
  10. &saveurl=[my web site]/Save.aspx

Then I use output url in a frame and Zoho Writer Editor appears loading correctly my file (tmp1.doc).
After that, I edit my file adding some text and I click on Zoho Writer's button save.
My page Save.aspx get the response of Zoho request and it's ok.
According to this sample, code inside Save.aspx is this one:

  1.         protected void Page_Load(object sender, EventArgs e)
  2.         {
  3.             System.IO.StreamWriter writer;
  4.             string logMessage = "";
  5.             HttpPostedFile returnFile = null;
  6.             string filename = "";
  7.             string percorso = System.Web.HttpContext.Current.Request.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath);
  8.             try
  9.             {
  10.                 returnFile = Request.Files["content"];
  11.                 filename = Request.QueryString["filename"];
  12.                 Request.Files["content"].SaveAs(percorso + filename);
  13.             }
  14.             catch
  15.             {
  16.             }
  17.             Label1.Text = Request.QueryString.Count;
  18.             Label2.Text = Request.Files.Count;
  19.       }
My problem is that Questring is empty as the collection of files in the request.
I've made something wrong, could someone help me to understand what this problem is due to?
Thanks in advance,
Roby