How to get user control id inside another user control id? [closed]

If I am correct in comprehending your question, you could do something like this

// get a handle on your original control 
var myControl = $('[id$="<controlID>"]'); 
// and then access it's properties 
var myRuntimeId = myControl.eq(0).attr('id'); 

Leave a Comment