Question : asp.net need help on a parameterize search via a filter expression

First the page opens with the where clause selecting all record not lockedout. that is good
next if I select values for the two ddl refered to in the paramters and the values have a match in the DB
the filter work and returns the rows that meet the conditions of the filter...so that is good.

NOW ..what I need is a way to constuct the filter to do all the above but to have another feature that will allow the filter to return only the rows; where only one of the parameters are true or have a match.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
Where E.IsLockedOut = 'False'

   ORDER BY E.SignUpDate DESC"
                     
   FilterExpression="Type LIKE '{0}' AND Make LIKE '{1}'">
        
    <FilterParameters>
         <asp:ControlParameter  ControlID="ddlType" PropertyName="SelectedValue" />
         <asp:ControlParameter  ControlID="ddlMake" PropertyName="SelectedValue" />
    </FilterParameters>

Answer : asp.net need help on a parameterize search via a filter expression

CTP means Community Technology Preview

http://en.wikipedia.org/wiki/CTP
Random Solutions  
 
programming4us programming4us