tags:

views:

27

answers:

1

What does the FilterExpression do on a SQLDataSource in C#?

A: 

It controls the filtering expression that is applied when a Select method call is issued. Read about it here.

So if you have something like:

FilterExpression="Title='{0}'

Then you can filter on Title when you call Select, and supply the title value.

dcp