Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a page in my website that requires a simple file download link. This link is implemented via the combination of an action link and a File ActionResult like so:

View Code:

@Html.ActionLink("Download", "Download", new { id = 1 }, new { @data_role = "button" }) 

Controller Code:

public ActionResult Download(int? id)
{
  ..
  ..
  return File(fileStream, fileInfo.Extension, fileInfo.Name);
}

This works fine without Jquery Mobile applied, but when I switch on Jquery mobile the page freezes up after the action method returns from my controller.

Do I need to do something special with Jquery mobile for this to work correctly?

share|improve this question

1 Answer

up vote 2 down vote accepted

I think you might need to turn off the ajax loading for that link. There are a couple of ways to do it, adding rel="external" being one of them.

share|improve this answer
Brilliant, worked like a charm -- Thanks. – Sean Hunter May 13 '11 at 5:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.