<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<body>
<form id="form1" runat="server">
<div id="content">
<asp:FormView
id="frmProducts"
DataSourceID="srcProducts"
AllowPaging="true"
Runat="server">
<ItemTemplate>
<h1><%# Eval("Title") %></h1>
<b>Directed By:</b>
<%# Eval("Director") %>
<br />
<b>In Theaters:</b>
<%#Eval("InStock") %>
<hr />
<asp:LinkButton
id="lnkNew"
Text="New Product"
CommandName="New"
Runat="server" />
</ItemTemplate>
<InsertItemTemplate>
<asp:Label
id="lblTitle"
Text="Product Title:"
AssociatedControlID="txtTitle"
Runat="server" />
<br />
<asp:TextBox
id="txtTitle"
Text='<%# Bind("Title") %>
Runat="server" />
<br /><br />
<asp:Label
id="lblDirector"
Text="Product Director:"
AssociatedControlID="txtDirector"
Runat="server" />
<br />
<asp:TextBox
id="txtDirector"
Text='<%# Bind("Director") %>
Runat="server" />
<br /><br />
<asp:CheckBox
id="chkInStock"
Text="In Theaters"
Checked='<%# Bind("InStock") %>
Runat="server" />
<br /><br />
<asp:LinkButton
id="lnkInsert"
Text="Insert Product"
CommandName="Insert"
Runat="server" />
|
<asp:LinkButton
id="lnkCancel"
Text="Cancel Insert"
CommandName="Cancel"
Runat="server" />
</InsertItemTemplate>
</asp:FormView>
<asp:SqlDataSource
id="srcProducts"
ConnectionString="<%$ ConnectionStrings:Products %>"
SelectCommand="SELECT Id,Title,Director,InStock
FROM Products"
InsertCommand="INSERT Products (Title,Director,InStock)
VALUES (@Title,@Director,
Runat="server" />
</div>
</form>
</body>
</html>
File: Web.config
<configuration>
<connectionStrings>
<add name="Products"
connectionString="Data Source=.\SQLEXPRESS;
AttachDbFilename=|DataDirectory|MyDatabase.mdf;Integrated Security=True;User Instance=True" />
</connectionStrings>
</configuration>
|