or
<telerik:GridBoundColumn DataField="InvitedOn" HeaderText="First Invited On" UniqueName="InvitedOn" AutoPostBackOnFilter="true"> </telerik:GridBoundColumn>
It works just fine when the user enters the date or date fragment, but if the user enters text that is not in date format, e.g. "ddd" or "9/15/20100," it returns all records. I would expect it to return no records in these cases. How can I get the expected behavior?
Thanks!
Laurie

<asp:TemplateField HeaderText="Status" SortExpression="Status"> <EditItemTemplate> <asp:DropDownList ID="DropDownList1" runat="server" SelectedValue='<%# Bind("Status") %>'> <asp:ListItem Text="" Value=""></asp:ListItem> <asp:ListItem Text="Assigned" Value="Assigned"></asp:ListItem> <asp:ListItem Text="Lost" Value="Lost"></asp:ListItem> <asp:ListItem Text="Returned" Value="Returned"></asp:ListItem> </asp:DropDownList> <%--<asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("Status") %>'></asp:TextBox>--%> </EditItemTemplate> <InsertItemTemplate> <asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("Status") %>'></asp:TextBox> </InsertItemTemplate> <ItemTemplate> <asp:Label ID="Label1" runat="server" Text='<%# Bind("Status") %>'></asp:Label> </ItemTemplate> </asp:TemplateField>Jon