i am looking for the best selector (jquery) in content pages !

i found the below selectors , but what is better and i should use that in .net 4?

        alert($('#hfFirstTimePageLoad').val()); -> NOT Ok
        $('#ContentPlaceHolder1_hfFirstTimePageLoad').val("This Is A Test"); -> Ok
        alert($('#ContentPlaceHolder1_hfFirstTimePageLoad').val()); -> Ok
        alert($('#<%= hfFirstTimePageLoad.ClientID%>').val()); -> Ok

thanks for leading me

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

In .NET 4 you can set your controls to use ClientIdMode Static and this should make the Id's appear as you define them. That's my preferred way if using .NET 4.

You can place the property on the element itself, the master page or in the web config

//On the Control
<asp:Button ID="Button1" runat="server" Text="Button" ClientIDMode="Static" />

//Master Page and web.config (all controls)
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.master.cs"   
    Inherits="WebApplication2.SiteMaster" ClientIDMode="Static" %>

<system.web>
    <pages clientIDMode="Static"></pages>
</system.web>

//HTML
<input id="Button1" type="submit" value="Button" name="ctl00$MainContent$Button1">

http://msdn.microsoft.com/en-us/library/system.web.ui.control.clientidmode.aspx

https://www.west-wind.com/weblog/posts/54760.aspx

link|improve this answer
hi / thanks 4 updating your answer and attention to this thread / would u plz let us to know what is the perfect selector without static clientidmode ? – MoonLight Apr 23 '11 at 10:42
I've updated my answer and I've posted some links that will give you a good idea of what is possible. – Nicky Waites Apr 23 '11 at 10:44
thank you man / this is perfect ... – MoonLight Apr 23 '11 at 10:53
Something to remember if you're using a repeating control then you'll want to set it to predictable – Nicky Waites Apr 23 '11 at 11:02
i really like this property :) – MoonLight Apr 23 '11 at 11:15
feedback

Your Answer

 
or
required, but never shown

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