1
Answer

put method

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)