Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8312733
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T20:15:23+00:00 2026-06-08T20:15:23+00:00

Im trying to set an array in Javascript , and then give it values

  • 0

Im trying to set an array in Javascript, and then give it values from the DataTable in the code behind like that :

for (var i = 0; i < '<%=dt_questionVideo.Rows.Count - 1 %>'; i++) {
        videoQarray[i] = '<%=Convert.ToInt32(dt_questionVideo.Rows['+i+'][0]) %>';
    }

Im getting an error

Too many characters in character literal

how can I manuover this one ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T20:15:24+00:00Added an answer on June 8, 2026 at 8:15 pm

    You can’t really do it that way. If you need a javascript array like that, you’re going to have to do something like this in the code behind:

            int[] videoQarray = new int[dt_questionVideo.Rows.Count - 1];
            for (var i = 0; i < dt_questionVideo.Rows.Count - 1; i++) {
                videoQarray[i] = Convert.ToInt32(dt_questionVideo.Rows[i][0]);
            }
    
            string createArrayScript = string.Format("var videoQarray = [{0}];", string.Join(",", videoQarray));
    
            Page.ClientScript.RegisterStartupScript(this.GetType(), "registerVideoQArray", createArrayScript, true);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to display six images from a javascript array. Running the code
I'm trying to merge two arrays for the values of array1 that are set
I'm trying to add a set of objects that have been retrieved from a
I am trying to create an array in my JavaScript object that contains objects
I have a JAVASCRIPT array that looks like this: postarray['min_price'] = 120000; postarray['max_price'] =
I'm trying to use an array to set the where parameters for a Zend
Trying to learn about php's arrays today. I have a set of arrays like
Trying to set it so if a certain condition is met then one of
Sometimes JavaScript doesn't make sense to me, consider the following code that generates a
I'm not a javascript guru. I've got the following code below: var aCookieValues =

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.