Tagged Questions

1
vote
2answers
77 views

View Control name concatenated with ClientID and masterpage control name in ASP.NET MVC

I am working with ASP.NET MVC application. I have One master page having one contentplaceholder. I have one view placed in the contentplaceholder of master page. i have few textBoxes say "name", …
5
votes
2answers
204 views

C# asp.net Why is there a difference between ClientID and UniqueID?

I know ClientID is used for javascript and UniqueId for server side and that ClientID uses an underscore (_) and UniqueId uses a dollar sign ($) in asp.net 2.0. But what I don't get is why use two …
0
votes
1answer
36 views

search for ClientID client-side or server-side?

I understand that I currently can't use <a onclick="alert('<%=TextBox1.ClientID%>')" directly because I need to access it in a table cell in a table in the EditTemplate of a DataList inside a …
0
votes
1answer
153 views

how to get jsf clientid of a component in datatable ?

hi there, i am trying to get the client id of a component in a datatable. the problem is that jsf puts row index before the component id automatically, i.e. <a …
2
votes
3answers
94 views

ClientID invalid after moving code into DotNetNuke module

I am porting an existing application to a DotNetNuke module and discovered bizarre behavior. I use ClientID when creating javascript so that the code can identify the HTML elements. Normally that …
2
votes
3answers
188 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
votes
2answers
396 views

how to obtain the client id of a ContentPlaceHolder in an easy manner?

i need to add JavaScript calls in some controls attributes, i am using master pages but in order to obtain the contentplaceholder client id i am iterating over the forms controls. is there another …