id="txtTitle"
Runat="server" />
id="btnSubmit"
Text="Search"
OnClick="btnSubmit_Click"
Runat="server" />
id="grdProducts"
DataSourceID="srcProducts"
Visible="false"
Runat="server">
No matching products were found.
id="dtlProduct"
DataSourceID="srcProducts"
DefaultMode="Insert"
AutoGenerateInsertButton="true"
AutoGenerateRows="false"
Runat="server"
OnItemInserted="dtlProduct_ItemInserted">
HeaderText="Title:"
DataField="Title" />
HeaderText="Director:"
DataField="Director" />
id="srcProducts"
ConnectionString="<%$ ConnectionStrings:Products %>"
SelectCommand="SELECT Title,Director FROM Products WHERE Title LIKE @Title+'%'"
InsertCommand="INSERT Products (Title, Director)
VALUES (@Title, @Director)"
Runat="server">
Name="Title"
ControlID="txtTitle"
PropertyName="Text" />