Click here to Skip to main content
15,914,409 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i have 2 radiobutton 1)new 2) old
i have 2 table
if radibutton new check table 1 should be display
if radiobutton old check table 2 should be display



plz give me idea
Posted
Comments
jacobjohn196 24-Mar-14 6:20am    
What kind of table? HTML Table or DataTable or some other?

1 solution

if(rbnnew.checked == true)
{
tbl1.visible = true;
tbl2.visible = false;
}
else
{
tbl1.visible = false;
tbl2.visible = true;
}
 
Share this answer
 

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