Advertisement
Guest User

Untitled

a guest
Jul 28th, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. public ActionResult Downloadfile(string filename, string fileloaction, string extention)
  2. {
  3. ...
  4. }
  5.  
  6. $.ajax({
  7. type: 'POST',
  8. cache: false,
  9. url: 'xxx/downloadfile',
  10. data: { 'filename': filename, 'fileloaction': fulllink, 'extention': extention },
  11. success: function () {
  12. ...
  13. },//end success
  14. error: function (e) {
  15. console.log(e.statusText);
  16. }//end error
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement