Imports System.Data.Linq Imports Microsoft.VisualBasic Partial Public Class WebForm1 Inherits System.Web.UI.Page Protected Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button1.Click Dim adventureContext = New adventureWorks() Try Dim xemployee = (From employee In adventureContext.Employees Select employee.Title) GridView1.DataSource = xemployee GridView1.DataBind() Catch ex As Exception Console.WriteLine(ex.Message) End Try End Sub End Class Here's the result... That's it. Happy Coding.