Logo 
Search:

Asp.net Answers

Ask Question   UnAnswered
Home » Forum » Asp.net       RSS Feeds
  Question Asked By: Carole Walker   on Sep 09 In Asp.net Category.

  
Question Answered By: Nicolas Costa   on Sep 09

In your query  return concatenated string:
select f1 + ',' + f2 + ... + f7 FROM ...
call ExecuteScalar
on client  side code execute:
var sNums = string_blah.Split(',');
document.formName.labelName1.value = sNums[0];
...
document.formName.labelName7.value = sNums[6];

Share: 

 
 
Didn't find what you were looking for? Find more on Help w/ Design/Coding Tip Or get search suggestion and latest updates.


Tagged: