Tagged Questions

3
votes
3answers
507 views

AJAX & ASP.net, Referencing server controls in external file

I've got some JavaScript in an ASP.NET page that looks like this: var list = $get('<%=Topics.ClientID %>'); I have many functions written now where this syntax is used, and I would like to ...
1
vote
1answer
48 views

How to extract first component ID from #{cc.clientId}?

I neet to get a specific parent component ID in a composite component. I've only found out how to get the entire chain of IDs, namely as I wrote in the title: #{cc.clientId}. It delivers (I don't know ...
0
votes
4answers
184 views

Issue getting .ClientID in ASP.NET C#

I have the following in the uploadError javascript function for AsyncFileUpload from AJAX toolkit: function uploadError(sender, args) { document.getElementById("<%# uploadResult.ClientID ...