views:

24

answers:

1

I have added the Html element to the table with table row but,i am getting problem with adding the Html.TextBox() to the table with a table row using j Query when a button is clicked.

+1  A: 

jQuery and Javascript are not ASP. A TextBox is an <input> element with type="text". To add one to any given element:

$('#someElement').append($('<input type="text" />'));
nickf