Send file with ajax of jQuery to web service in C# (asmx)

前端 未结 3 799
北海茫月
北海茫月 2021-01-02 12:43

I\'m using web service with this method:

        $.ajax({
            type: \'POST\',
            url: \'page.asmx/method\',
            contentType: \'appli         


        
3条回答
  •  佛祖请我去吃肉
    2021-01-02 13:01

    Send Client side value server side through jquery and ajax call.
    
    Click On butto send value client side to server side
    
    
    // Web Servics Telephone.asmx
    [HttpPost]
     public ActionResult Edit(string data)
     {
     }
    

提交回复
热议问题