Click here to Skip to main content
15,920,030 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hi,
i taken three radiobuttons and i kept in group and given one groupname and in the coding page is this works or not.
if(rbtnofferyes.checked==true)
{
empBM.agreement=true;
elseif(rbtnofferno.checked==true)
{
empBM.agreement=false;
elseif(rbtnoffernot.checked==true
{
empBM.agreement=false;
}
}
}

And in database side i take three tables as yes,no,not and also i wrote three storedprocedures addyes,addno,addnot.
with the above code how i need to call all these storedprocedured.

please suggest me.

thanks in advance..
Posted
Updated 16-Mar-11 4:57am
v2
Comments
Albin Abel 16-Mar-11 11:03am    
ASP.net has a better control radio button list
mandarapu 16-Mar-11 11:07am    
how can i use that?
Albin Abel 16-Mar-11 11:07am    
If your stored procedures are in sqlserver then use the sqlCommand class, set its command type to stored procedure

1 solution

 
Share this answer
 
Comments
Espen Harlinn 16-Mar-11 19:21pm    
c# station was nice, my 5
Albin Abel 16-Mar-11 22:58pm    
Thanks Espen Harlinn

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900