Skip to content

Instantly share code, notes, and snippets.

@corespider
Created February 26, 2022 11:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corespider/f32421ea3e7e995d0aedd8dfbe83305a to your computer and use it in GitHub Desktop.
Save corespider/f32421ea3e7e995d0aedd8dfbe83305a to your computer and use it in GitHub Desktop.
How to Bind Array to GridView in ASP.Net
//One Dimensional Array
string[] arr1D = { "Ram", "John", "Stewart", "Sham", "Tod", "Bryan" };
gridView1.DataSource = arr1D;
gridView1.DataBind();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment