Hi..i need to write a program that allows the user to input student’s names (in textbox) and their studentID (using array) and searching (by name and id). the list of the student data should display in a gridview. Can anyone help me out?

>Can anyone help me out?
Do not use array to store name and id. Use DataTable object.

Dim dt as new DataTable
  dt.Coumns.Add("Id")
  dt.Columns.Add("Name")
  ....
  dt.Rows.Add(1,"A")
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.