ASP.NET(vb.net) & FormView - DataBind & DataSource Example scripts how to use FormView control in asp.net , Binds data from the data source to the control.This method binds data from the data source to the control.
ShotDev Focus:
- ASP.NET(vb.net) & FormView - DataBind & DataSource
Example
FormViewDataBind.aspx
<%@ Import Namespace="System.Data"%> <%@ Import Namespace="System.Data.OleDb"%> <%@ Page Language="VB" %> <script runat="server"> Dim objConn As OleDbConnection Dim objCmd As OleDbCommand Dim strGalleryID As String = 1 Sub Page_Load(sender As Object, e As EventArgs) Dim strConnString As String strConnString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&Server.MapPath("database/mydatabase.mdb")&";" objConn = New OleDbConnection(strConnString) objConn.Open() BindData() End Sub Sub BindData() Dim strSQL As String strSQL = "SELECT * FROM gallery WHERE GalleryID = " & strGalleryID Dim dtReader As OleDbDataReader objCmd = New OleDbCommand(strSQL, objConn) dtReader = objCmd.ExecuteReader() '*** BindData to FormView ***' myFormView.DataSource = dtReader myFormView.DataBind() dtReader.Close() dtReader = Nothing End Sub Sub Page_UnLoad() objConn.Close() objConn = Nothing End Sub </script> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <form id="form1" runat="server"> <asp:FormView id="myFormView" runat="server"> <ItemTemplate> <table width="500" cellpadding="5" border="0"> <tr> <td valign="top" align="center"> <asp:Image id="Image1" runat="server" ImageUrl='<%# Eval("Picture", "images/{0}") %>' /> <br /> <h2><%#Container.DataItem("GalleryName")%></h2> </td> </tr> </table> </ItemTemplate> </asp:FormView> </form> </body> </html>
Create a asp.net file and save to path root-path/dotnet/
Run
http://localhost/dotnet/FormViewDataBind.aspx
Screenshot
3helping…
…