Click here to Skip to main content
15,920,111 members

Comments by prthghosh999 (Top 42 by date)

prthghosh999 24-Jun-15 10:30am View    
I got the .apk file in debug mode . do you have any idea for that????
prthghosh999 14-May-15 2:28am View    
Deleted
i've edited my question. you can check that
prthghosh999 13-May-15 10:49am View    
i thing you should check my code carefully....

$.ajax({
type: 'POST',
url: 'http://www.transapi.ksoftware.co.in/api/RoleApi',
prthghosh999 13-May-15 4:45am View    
i'm having a table name tblRole [ID, Name, Status] in the database. i have to insert a new row in this Role table passing the name and status as parameter. status field will take boolean vale i.e. true/false. Now i created a post method in my api controller [public int Post(RoleModel model){....} ] and call the procedure for data insertion from that method. here i send model object as parameter to that post method. this model contains RoleName and status. now my problem is that , how to call this post method from my html page and pass those field as parameter to insert a new row into the table
prthghosh999 13-May-15 3:19am View    
i have to insert new row in role table having the fields like RoleId,RoleName,Status