I created an ASPX page with search controls to the left bound as controls for an AccessDataSource.
I want the data grid to be blank on the first calling of the page, but show the results for subsequent page loads.
I plan to achieve this by putting [pFirstRun] = False
as my first WHERE
condition with the parameter pFirstRun
tied to the value isPostBack. How do I achieve this?
Alternatively, is there a better way to achieve this goal?