ARTICLE

Bind data in a ListBox in VB.NET

Posted by Satyapriya Nayak Articles | ASP.NET using VB.NET August 26, 2011
In this article we will bind records from database to a listbox.
Download Files:
 
Reader Level:

In this article we will bind records from database to a listbox. Here we can bind only one column from the database. For that we have to mention the field name in DataTextField property of the listbox.

Table structure

tabl1.gif

Program

Default.aspx code

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head runat="server">

    <title>Untitled Page</title>

</head>

<body>

    <form id="form1" runat="server">

    <div>

    </div>

    <asp:ListBox ID="ListBox1" runat="server" Height="242px"

        SelectionMode="Multiple" Width="337px"></asp:ListBox>

    </form>

</body>

</html>

Default.aspx.vb code

Imports System.Data

Imports System.Data.SqlClient

Partial Class _Default

    Inherits System.Web.UI.Page

    Dim strConnString As String = System.Configuration.ConfigurationManager.ConnectionStrings.Item("ConnectionString").ToString()

    Dim con As New SqlConnection(strConnString)

    Dim str As String

    Dim com As SqlCommand

    Dim sqlda As SqlDataAdapter

    Dim ds As DataSet

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

        con.Open()

        str = "select * from employee"

        com = New SqlCommand(str, con)

        sqlda = New SqlDataAdapter(com)

        ds = New DataSet

        sqlda.Fill(ds, "employee")

        ListBox1.DataValueField = "empid"

        ListBox1.DataTextField = "empname"

        ListBox1.DataSource = ds

        ListBox1.DataMember = "employee"

        ListBox1.DataBind()

        con.Close()

    End Sub

End Class

Output

Here we have field name as empname in DataTextField property of the listbox.

tab2.gif

Thanks for reading

Login to add your contents and source code to this article
share this article :
post comment
 

Thanks

Posted by Satyapriya Nayak Aug 26, 2011

Good Work Satyapriya

Posted by Dea Saddler Aug 26, 2011
Nevron Diagram
Become a Sponsor
PREMIUM SPONSORS
  • ceTE software specializes in components for dynamic PDF generation and manipulation. The DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and new content to existing PDF documents from within your applications.
    Finally – a virtual platform that delivers next-generation Windows Server 2008 Hyper-V virtualization technology from a managed hosting partner you can truly depend on. Visit www.maximumasp.com/max for a FREE 30 day trial. Hurry offer ends soon. Climb aboard the MaxV platform and take advantage of High Availability, Intelligent Monitoring, Recurrent Backups, and Scalability – with no hassle or hidden fees. As a managed hosting partner focused solely on Microsoft technologies since 2000, MaximumASP is uniquely qualified to provide the superior support that our business is built on. Unparalleled expertise with Microsoft technologies lead to working directly with Microsoft as first to offer IIS 7 and SQL 2008 betas in a hosted environment; partnering in the Go Live Program for Hyper-V; and product co-launches built on WS 2008 with Hyper-V technology.
Become a Sponsor