Possible Duplicate:
Need the clientId of a textbox inside a content control using javascript

I have a script that needs to access a TextBox, but ASP.NET generates some crazy names: ctl00$ContentPlaceHolder1$txtEmpFirstName ... client side scripting makes it impossible to know what to do to access this control.

How do we get around this? I also need to be able to access the text from server-side code when a button is pressed if that makes a difference?

link|improve this question

76% accept rate
This question has been asked and answered many times before. stackoverflow.com/… There are at least four or five questions in those results that match this. – jwiscarson Nov 23 '11 at 20:39
feedback

closed as exact duplicate by Anna Lear Nov 25 '11 at 4:40

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 6 down vote accepted

You can access the TextBox's ClientID property in your client side code.

<%= TextBox.ClientID %>
link|improve this answer
This works for google chrome, but in IE9 I get an error that the control is undefined... – michael Nov 23 '11 at 20:51
@michael: Get an error where? Server-side? Client-side? What code is throwing the error? – David Nov 23 '11 at 20:55
I had to do document.getElementById('<%= TextBox.ClientID %>').Value = ... in order for it to work in IE9, but I guess that's a JS thing and not so much an ASP.NET thing. Before I was just doing <%= TextBox.ClientID %>.Value = ... – michael Nov 23 '11 at 21:01
feedback

The way that we handle this situation is to write a javascript variable on the server side for each control that needs to be accessed in the client side.

For example:

string sScript = "var m_stxtEmpFirstName = '" + txtEmpFirstName.ClientID + "'";

ScriptManager.RegisterStartupScript(this, this.GetType(), "MyScript", sScript, true);

This is necessary in a couple of situations:

1) If your javascript is separate from your code page

2) If you are dealing with third-party controls that require a slightly different method of identifying the controls on the client side (we work with some controls in which in underscores in the ClientID have to be replaced with x or removed altogether). Yes, you could do this in the inline script, but you'd have to remember to do it every time to accessed the control. Doing this on the server side allows you to create generic, control type-specific methods that can generate the appropriate client id for you correctly every time.

3) If you have dynamically generated controls in the page for which the clientid may not be known at design time.

These are just the scenarios off the top of my head that we have encountered that required the ids to be generated as js variables in codebehind. I know that there are many more.

link|improve this answer
feedback

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