Preferred Language:
Listing 31.4 - Feedback.aspx
<%@ Page Language="C#" %>
<!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>Feedback</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:ScriptManager
id="sm1"
Runat="server" />
<asp:UpdatePanel
id="up1"
Runat="server">
<ContentTemplate>
<asp:FormView
id="frmFeedback"
DataSourceId="srcFeedback"
DefaultMode="Insert"
Runat="server">
<InsertItemTemplate>
<asp:Label
id="lblName"
Text="Name:"
AssociatedControlID="txtName"
Runat="server" />
<asp:RequiredFieldValidator
id="valName"
Text="Required"
ControlToValidate="txtName"
Runat="server" />
<br />
<asp:TextBox
id="txtName"
Text='<%# Bind("Name") %>'
Runat="server" />
<br /><br />
<asp:Label
id="lblComment"
Text="Comment:"
AssociatedControlID="txtComment"
Runat="server" />
<asp:RequiredFieldValidator
id="valComment"
Text="Required"
ControlToValidate="txtComment"
Runat="server" />
<br />
<asp:TextBox
id="txtComment"
Text='<%# Bind("Comment") %>'
TextMode="MultiLine"
Columns="50"
Rows="3"
Runat="server" />
<br /><br />
<asp:Button
id="btnSubmit"
Text="Submit"
CommandName="Insert"
Runat="server" />
</InsertItemTemplate>
</asp:FormView>
<br /><br />
<asp:GridView
id="grdFeedback"
DataSourceID="srcFeedback"
AllowSorting="true"
Runat="server" />
</ContentTemplate>
</asp:UpdatePanel>
<asp:SqlDataSource
id="srcFeedback"
ConnectionString='<%$ ConnectionStrings:con %>'
SelectCommand="SELECT Id,Name,Comment,DateSubmitted
FROM Feedback"
InsertCommand="INSERT Feedback (Name,Comment)
VALUES (@Name,@Comment)"
Runat="server" />
</div>
</form>
</body>
</html>
ASP.NET 3.5 Unleashed
- Containing almost 2,000 pages of code samples and in-depth explanation of the
ASP.NET 3.5 Framework, ASP.NET 3.5 Unleashed is the most comprehensive book
written on the ASP.NET 3.5 Framework.
ASP.NET 3.5 Unleashed is now available in your local bookstore and online (Published January 7, 2008).
All of the code samples from this book are hosted "live" at this website.
Click here
to view the table of contents and code samples.