Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Works In ASP.NET but not in VB.NET ... Why???

Status
Not open for further replies.

SSchimsky

MIS
Mar 26, 2002
16
0
0
US
Can someone please tell me why this code works in ASP.NET, (on a web form), but not in VB.NET, (on a windows form).

Dim a(10) As String

a(0) = "Steve"
a(1) = "Rebee"
a(2) = "Lee"
a(3) = "Reed"

DataGrid1.DataSource = a
DataGrid1.DataBind()

What do I need to do to get it working on a Windows form?

Thanks for any insights...

Steve

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top