vote up -1 vote down star

Hi,

I'm working with a table of asp.net controls on client side. They are all named in the following fashion when they are created on server side: "txt_name_" + rowNum. I know I can access them by their id by using "<%=Control.ClientID%>". On client side I have access to current row num via a javascript variable. I'm wondering how I can access one of the controls on client side by using something like the following(which doesn't seem to work): "<%=txt_name_" + jsRowNumVar + ".ClientID%>". so I'm essentially trying to substitute a javascript variable as part of an asp.net control name and it doesn't seem to be working. Any ideas on how I would accomplish this?

flag

2 Answers

vote up 0 vote down check

As an alternative, you can render your rows' client ids with an javascript array, and you can use it with the row index.

string jsToRender = "<script>var myCtrlIds = new Array('" + 
         text0.ClientId + "', '" + 
         text1.ClientId + "', '" + 
         text2.ClientId + "');</script>";
Page.ClientScript.RegisterStartupScript(typeof(MyPage), "jsKey", jsToRender);

Then use the control id array in your client scripts :

<script>
      var text0Value = document.getElementById(myCtrlIds[0]).value;
</script>
link|flag
not sure what you mean. – rap-uvic Nov 5 at 20:51
vote up 1 vote down

It does not work like this the <% ... %> stuff is evaluated on the server and comes to the client as html. Placing the name of the javascript variable there will do no good for you

link|flag

Your Answer

Get an OpenID
or

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