1
Answer

aspx page

mayank jain

mayank jain

15y
2.2k
1
hi guys i am using this code in my aspx page

<%for (int i=o;i<5;i++)
{%>
  <asp: link button id=i text=i/>

<%}%>

at it producing five link buttons like
i i i i i

but i just want five link buttons like that

1 2 3 4 5
with id=1,2,3,4,5 respectively

how can I can implement that

Answers (1)
0
Satyapriya Nayak

Satyapriya Nayak

NA 53k 8m 11y
private void Form6_Load(object sender, EventArgs e)
        {
            comboBox1.Text = "Select experience";
            int expe;
            for(expe=0;expe<=30;expe++)
            {
                comboBox1.Items.Add(expe);
            }
        }