1
Answer

put method

Photo of veerendra kumar

veerendra kumar

10y
734
1
Put method in Ajax call
 
url is call one API method. in this API method take two arguments one is type and second is Dynamic object.
 
how to call this method.
 
 
 API:
Public string Put(int type,Dynamic ob)
{
if(type==1)
retrun "hai";
else
return false; 
 
 How to call this method in /ajax call
 
 
 
 
 

Answers (1)