ARTICLE

Display Picture In Repeater control in VB.NET

Posted by Satyapriya Nayak Articles | ASP.NET using VB.NET August 12, 2011
Here I will show you how to display picture in repeater control along with data.
 
Reader Level:

Here I will show you how to display picture in repeater control along with data.

Program

First create a table student

Create table student (sid varchar(50),sname varchar(50),saddress varchar(50), smarks int,pic varchar (50))

Store the picture in the program folder and save there name in pic column of the table with there extension like (.gif,.jpg,.bmp)

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>

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

                        <ItemTemplate>

                        <table border="1">

                        <tr>

                        <th>sid</th>

                        <th>sname</th>

                        <th>saddress</th>

                        <th>smarks</th>

                        <th>pic</th>

                        </tr>

                        <tr>

                        <td><%#Container.DataItem("sid")%></td>

                        <td><%#Container.DataItem("sname")%></td>

                        <td><%#Container.DataItem("saddress")%></td>

                        <td><%#Container.DataItem("smarks")%></td>

                        <td><asp:Image ID="Image1" ImageUrl='<%#container.dataitem("pic")%>' runat="server" /></td>

                        </tr>

                        </table>

                        </ItemTemplate>

             </asp:Repeater>

    </div>

    </form>

</body>

</html>

 

Default.aspx.vb code

Imports System.Data.SqlClient

Imports System.Data

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 com As SqlCommand

    Dim str As String

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

        If Not IsPostBack Then

            con.Open()

            str = "select * from student"

            com = New SqlCommand(Str, con)

            Dim reader As SqlDataReader

            reader = com.ExecuteReader

            Repeater1.DataSource = reader

            Repeater1.DataBind()

            reader.Close()

            con.Close()

        End If

    End Sub

End Class

Output

repeaterimage1.gif

Login to add your contents and source code to this article
share this article :
post comment
 
Become a Sponsor
PREMIUM SPONSORS
  • 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.
    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.
6 Months Free & No Setup Fees ASP.NET Hosting!
Become a Sponsor