Download File Multiple Time without Postback

  1. //First in C# CS file call method  
  2.    
  3. Buttonname.OnClientClick = "jsmethodname()";      
  4.    
  5. //on ASPX page add following method  
  6. <script language="javascript" type="text/javascript">    
  7.    function jsmethodname() 
  8.    { 
  9.   
  10.       window.WebForm_OnSubmit = function ()    
  11.       { return true; };    
  12.    }  
  13.   
  14. </script>