upload file not working in updatepanel

前端 未结 3 1733
[愿得一人]
[愿得一人] 2021-01-13 17:08

I DONT WANNA GET MY PAGE TO BE GET REFRESH OR POSTBACK

So I am trying uploading file in updatepanel but onclicking upload button the valida

3条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-13 17:56

    just add PostBackTrigger after for the FileUploader as below:

     
          
           
         
      
    

    and add the below code in page load :

    ScriptManager.GetCurrent(this).RegisterPostBackControl(FileUpload1);  
    

    or if you want to make it async, you can use this :

    
    
        
            
            
                           
        
        
            
            
        
    
    

提交回复
热议问题