I'm new to this, so forgive me if this is trivial. Anyway, I am creating a simple ASP web page that reports data from a table in a database that has 5 elements. I use GridView to display data, and it works fine, but I would like to limit the results to three elements so that I can enable paging. I tried setting the select statement from something like "select * from country" to
select * from country limit 3
but I get the message "There was an error message executing the request" when I try to test it. Is there any other way I have to do this?
oipsl source
share