i'm trying make some stuffs in jQuery using asp.net. but the id from runat="server" is not the same as the id used in html.

i'm used to use this to get the id from this situation:

$("#<%=txtTest.ClientID%>").val();

but in this case. it does not work, and i'm clueless why.

Javascript

/* Modal */

function contatoModal() {

//alert("Test");

alert($("#<%=txtTest.ClientID%>").val());

}

HTML

< input runat="server" id="txtTest" value="test" />

Any tips ?

Regards.

link|improve this question

79% accept rate
What does it actually output for the ID of the textbox and the <%=txtTest.ClientID %> ? – Richard Dalton Mar 22 '11 at 14:41
feedback

4 Answers

up vote 5 down vote accepted

<%= 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:

<input runat="server" id="txtTest" value="test" class="txtTest" />

and then:

var value = $('.txtTest').val();
link|improve this answer
Wow! that works... i put my function inside my ascx page, and it works now. The class part i knew (but thanks for the tip too), and it works in a separate javascript (as class). There is no way to runat server id works in my function.js page ? script_path: script/function.js ascx_path: components/contact.ascx Regards – Michel Ayres Mar 22 '11 at 15:00
feedback

To avoid issues with rendered ID's, use a class instead. This won't change during rendering:

function contatoModal() {

//alert("Test");

alert($(".txtTest").val());

}

HTML:

< input runat="server" id="txtTest" value="test" class="txtText" />
link|improve this answer
Also looks a lot neater might I add – Curt Mar 22 '11 at 14:42
feedback

Try putting it into a variable name:

var txtTestID = '#' + '<%=txtTest.ClientID %>';

$(txtTestID).val();

I'm not sure if the <%= likes being inside double quotes. I've always had mixed behaviors when not using the single quote.

link|improve this answer
This does not work too. Same thing as my sample, but thanks for the tip anyway =D PS: i used the single quotes this time. =X – Michel Ayres Mar 22 '11 at 14:52
feedback

When using ASP.NET 4 and the ClientIDMode is set to “Predictable”, you can predict the ID based on hierarchy. Or set it set to “Static”, so asp.net wont mess it up.

ScottGu's article on it http://weblogs.asp.net/scottgu/archive/2010/03/30/cleaner-html-markup-with-asp-net-4-web-forms-client-ids-vs-2010-and-net-4-0-series.aspx

And this is extremely useful when using external JS file scenarios.

link|improve this answer
Thanks Shaans, i'll check it. excelent information btw xD – Michel Ayres Mar 22 '11 at 18:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.