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 247687
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T21:16:48+00:00 2026-05-11T21:16:48+00:00

How do I write out my array with a repeater? string[,] month = {

  • 0

How do I write out my array with a repeater?

string[,] month = { {"Januari", "Februari", "Mars", "Apri", "Maj", "Juni", "Juli", "Agusti", "September", "November", "Oktober", "December"},
                    {"01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"}
                  };

Now I can use Container.DataItem, but how do I get the first string of items in one place and the second in another place?

<a href="Default.aspx?m=01">Januari</a>
  • 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-05-11T21:16:48+00:00Added an answer on May 11, 2026 at 9:16 pm

    It would be possible to use an array of arrays as data source (but not a two dimensional array), but you would have to arrange it the other way arround, so that each inner array would contain a name and a number.

    I would prefer a more OOP approach though, it gives a bit more structure and the repeater code gets a lot cleaner:

    Create a class for the month information:

    public class MonthInfo {
    
       public string Name { get; private set; }
       public string Number { get; private set; }
    
       public MonthInfo(string name, string number) {
          Name = name;
          Number = number;
       }
    
    }
    

    Now you can create an array of objects to use as data source for the repeater:

    MonthInfo[] months = {
       new MonthInfo("Januari", "01"),
       new MonthInfo("Februari", "02"),
       new MonthInfo("Mars", "03"),
       new MonthInfo("April", "04"), // inte "Apri" ;)
       new MonthInfo("Maj", "05"),
       new MonthInfo("Juni", "06"),
       new MonthInfo("Juli", "07"),
       new MonthInfo("Augusti", "08"), // inte "Agusti" ;)
       new MonthInfo("September", "09"),
       new MonthInfo("Oktober", "10"), // kommer före november ;)
       new MonthInfo("November", "11"),
       new MonthInfo("December", "12")
    };
    
    MonthRepeater.DataSource = months;
    

    In the repeater you use the properties of the month info class:

    <asp:Repeater runat="server" id="MonthRepeater">
       <ItemTemplate>
          <a href="Default.aspx?m=<%#Eval("Number")>"%><%#Eval("Name")%></a>
       </ItemTemplate>
    </asp:Repeater">
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 202k
  • Answers 202k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer My site has simple navigation and I just tailor the… May 12, 2026 at 8:26 pm
  • Editorial Team
    Editorial Team added an answer This line ID = '70-and-some-text' makes MySQL convert the right-hand-side… May 12, 2026 at 8:26 pm
  • Editorial Team
    Editorial Team added an answer Regarding your problem itself, IE developer tools suggests that the… May 12, 2026 at 8:26 pm

Related Questions

I have a table in a form with a loop around it that sets
Problem: How to most efficiently move data from an array into a SQL Server
Possible Duplicate: Why do I get a segmentation fault when writing to a string?
My company's main application is mostly written in C++ (with some Delphi code and

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.