I\'m trying make some stuff in jQuery using ASP.NET. But the ID from runat=\"server\" is not the same as the id used in HTML.
runat=\"server\"
I used to use this to get
<%= txtTest.ClientID %> should work but not in a separate javascript file where server side scripts do not execute. Another possibility is to use a class selector:
<%= txtTest.ClientID %>
and then:
var value = $('.txtTest').val();