wanted to avoid using web-forms for getting minor details....
So can we use hidden combo-box and radio-buttons for the purpose ?.....we want them to appear on button-click and retain values for some basic calculations ...If yes plz can anyone tell us how can we use them
Kirtan PatelPosted Oct 23, 2009, 5:11 AM
like
if you have DropDownList1 control on form
you can
write code in Click Event of Button to Make it Hide
like
you can make it visible again
by
if it helps you please check "Do you like this answer"
Venkatesh EllurPosted Oct 23, 2009, 8:59 AM
Shital what you can do is:
have a div on the page with run at server tag and id tag.
on click of a button you can add up the radio button list or any other control and add the same to the division.
eg:
RadiobuttonList rbl = new RadiobuttonList;
div.controls.add(rbl);
the above given is a pseudo code.
Kirtan PatelPosted Oct 23, 2009, 8:58 AM
for Control adding Dynamically lets take example how to add Button Dynamically
check " Do you like this answer" if it helps you :)
Above code Will Add Button to the Page Dynamically :)
Thanks
Shital MandlechaPosted Oct 23, 2009, 5:18 AM