Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to ask if there is a way to insert variable inside another string which is part of another statement. For example:

function SomeFunction(field) {  

  var someVariable = document.getElementById('<%=' + field + '.ClientID %>');
}

But I've got an error:

Error   6   'string' does not contain a definition for 'ClientID'

Thank you.

share|improve this question
2  
You cannot mix server-side and client-side code like this. – KennyTM Apr 5 '10 at 7:55
Is that a JavaScript error? Aren't you using a server-side language like ASP? – Álvaro G. Vicario Apr 5 '10 at 8:26
@amemack: you have asked five questions and received seven answers so far over one month, but you haven't accepted any. How about rewarding those you found useful? – Salil Apr 5 '10 at 8:27

2 Answers

You can not get a value from server-side tags, this won't work:

<%=' + field + '.ClientID %>

You need to do it some way so you only do this:

var someVariable = document.getElementById(field);
share|improve this answer

Assuming field is say 'name' and you give id to name field as "name.4" where 4 is ClientID.

function SomeFunction(field) {  

      var someVariable = document.getElementById(field+".<%= ClientID.to_s %>");
    }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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