Customizing the display of the DetailsView control : DetailsView « ADO.net Database « ASP.Net






Customizing the display of the DetailsView control

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

<script runat="server">

</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:DetailsView ID="DetailsView1" Runat="server" DataSourceID="SqlDataSource1"
             AutoGenerateRows="False" DataKeyNames="CustomerID">
             <Fields>
                  <asp:BoundField ReadOnly="True" HeaderText="CustomerID"
                       DataField="CustomerID" SortExpression="CustomerID"
                       Visible="False" />
                  <asp:BoundField ReadOnly="True" HeaderText="CompanyName"
                       DataField="CompanyName" SortExpression="CompanyName" />
                  <asp:BoundField HeaderText="ContactName" DataField="ContactName"
                       SortExpression="ContactName" />
                  <asp:BoundField HeaderText="ContactTitle" DataField="ContactTitle"
                       SortExpression="ContactTitle" />
              </Fields>
        </asp:DetailsView>

        <asp:SqlDataSource ID="SqlDataSource1" Runat="server" 
            SelectCommand="SELECT * FROM [Customers]"
            ConnectionString="<%$ ConnectionStrings:AppConnectionString1 %>">
        </asp:SqlDataSource>    
    </div>
    </form>
</body>
</html>

File: Web.config

<configuration>
  <appSettings/>
  <connectionStrings>
        <add name="AppConnectionString1" 
             connectionString="Data Source=localhost\SQLEXPRESS;Initial Catalog=Northwind;Integrated Security=True"
             providerName="System.Data.SqlClient" />
    </connectionStrings>
  <system.web>
    <compilation debug="true" strict="false" explicit="true">
      <codeSubDirectories>
        <add directoryName="VB"></add>
        <add directoryName="CS"></add>
      </codeSubDirectories>
    </compilation>
    <pages>
      <namespaces>
        <clear/>
        <add namespace="System"/>
        <add namespace="System.Collections"/>
        <add namespace="System.Collections.Specialized"/>
        <add namespace="System.Configuration"/>
        <add namespace="System.Text"/>
        <add namespace="System.Text.RegularExpressions"/>
        <add namespace="System.Web"/>
        <add namespace="System.Web.Caching"/>
        <add namespace="System.Web.SessionState"/>
        <add namespace="System.Web.Security"/>
        <add namespace="System.Web.Profile"/>
        <add namespace="System.Web.UI"/>
        <add namespace="System.Web.UI.WebControls"/>
        <add namespace="System.Web.UI.WebControls.WebParts"/>
        <add namespace="System.Web.UI.HtmlControls"/>
      </namespaces>
    </pages>
    <authentication mode="Windows"></authentication>
    <identity impersonate="true"/>
  </system.web>
</configuration>

 








Related examples in the same category

1.Link DetailsView with SqlDataSource and do the editing
2.Using a PagerTemplate to customize the paging interface.
3.Editing a record with the DetailsView control.
4.Displaying a Master/Detail form with the DetailsView control.
5.Using a template when editing with the DetailsView control.
6.Handling Concurrency Issues: CompareAllValues or OverwriteChanges
7.Inserting Data with the DetailsView Control
8.Deleting Data with the DetailsView Control
9.Use the ItemInserted event to handle any errors
10.Adding an AutoGenerateInsertButton attribute to the DetailsView
11.Using the GridView and DetailsView together
12.Enabling paging on the DetailsView control