ARTICLE

Click the link of Datalist then corresponding values will be displayed in Repeater in VB.NET

Posted by Satyapriya Nayak Articles | ASP.NET using VB.NET August 10, 2011
Here we will see how to display corresponding values displayed in Repeater control When we click the link of Datalist control.
Reader Level:

Here we will see how to display corresponding values displayed in Repeater control When we click the link of Datalist control.

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:DataList ID="DataList1" runat="server" DataKeyField="prodid"

        BackColor="#FFFFCC">

    <HeaderTemplate>

    Product Name

    </HeaderTemplate>

        <HeaderStyle BackColor="#80FFFF" />

<ItemTemplate>

<asp:LinkButton ID="l1" text='<%#Eval("prodname")%>' Runat="server">

</asp:LinkButton>

</ItemTemplate>

    </asp:DataList><hr />

    <asp:Repeater ID="Repeater1" runat="server">

    <HeaderTemplate>

    <h1>Show the Customer who own the product</h1><br />

    </HeaderTemplate>

    <ItemTemplate>

<b>Customer ID:</b>

<b>

<%#Eval("custid")%>

</b>

<br>

<b>Customer Name:</b>

<b>

<%#Eval("custname")%>

</b>

<br>

<b>Customer Address:</b>

<b>

<%#Eval("custaddress")%>

</b>

</ItemTemplate>

    </asp:Repeater>

    </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

        If Not IsPostBack Then

            bindlist()

        End If

    End Sub

    Sub bindlist()

        Try

            con.Open()

            Str = "select * from product"

            com = New SqlCommand(Str, con)

            Dim reader As SqlDataReader = com.ExecuteReader

            DataList1.DataSource = reader

            DataList1.DataBind()

            con.Close()

        Catch ex As Exception

             Response.Write(ex.Message)

        End Try

    End Sub

  Protected Sub DataList1_ItemCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataListCommandEventArgs) Handles DataList1.ItemCommand

        Dim x As String

        DataList1.SelectedIndex = e.Item.ItemIndex

        bindlist()

        x = DataList1.DataKeys(e.Item.ItemIndex)

        bindrepeater(x)

    End Sub

    Sub bindrepeater(ByVal s As String)

        Try

            con.Open()

            Str = "select * from customer where prodid='" & s & "'"

            com = New SqlCommand(Str, con)

            Dim reader As SqlDataReader = com.ExecuteReader

            Repeater1.DataSource = reader

            Repeater1.DataMember = "customer"

            Repeater1.DataBind()

            con.Close()

        Catch ex As Exception

            Response.Write(ex.Message)

        End Try

    End Sub

End Class

Output

satyapriya3.gif

Login to add your contents and source code to this article
share this article :
post comment
 
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. Visit DynamicPDF here
    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.
Nevron Diagram
Become a Sponsor