sql - Multiple textbox search on a datagrid -
    okay struggling head around follow example. ( http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.sqldatasource.filterexpression.aspx )   aim: have 2 dropdowns/textboxes used edit datagrid filtering.   i have tried adding ,firstname='{1}'" ,firstname='{0}'" after =title not seeming work. added control parameter of course firstname.   the below code first version , original.   my code       <!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>asp.net example</title>         </head>         <body>                 <form id="form1" runat="server">                      <p>show employees following title:                     <asp:dropdownlist                     ...