Server Error in '/' Application-->The server tag is not well formed

Server Error in '/' Application-->The server tag is not well formed

I'm working in ASP.NET and i used the following code in jquery.And it is showing me error"The server tag is not well formed".please help me out guys.My Jquery Code is
  1. $('#add').click(function () { var txtcnt = $('splting').text().split(';'); var table = $(this).closest('table'); for (var i = 0; i < txtcnt.length - 1; i++) { table.append("<tr><td><input type=\"text\" id=\"label\" runat=\"server\" value="+txtcnt[i].toString()+"/></td><td><input type=\"text\" id=\"currentName\" runat=\"server\" value="+txtcnt[i].toString()+" /> </td></tr>"); } });