how to dynamically add more than one serverside controls using javascript
-
i need to add more than one serverside controls at runtime using javascript can someone help...
-
i need to add more than one serverside controls at runtime using javascript can someone help...
punit_belani wrote:
i need to dynamically add more than one controls using javascript
Similarly create table to add the button inside table cell
function addButtonToTable()
{
var buttonnode= document.createElement('input');
buttonnode.setAttribute('value','Btn');
celonnode.setAttribute('type','button1');
buttonnode.setAttribute('name','Btn');
buttonnode.onClick = BtnClick;
}function BtnClick()
{
alert("Here is new button");
}Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you. View My Latest Article