Hi Guys,
I have this varaiable where it displays a set of record as stated from a web config file. The web configf file states the maximun record it could display.
I want to show all the result on that page instead of limiting it.
This is how it is declared in the aspx page:
Dim intResultsPerPage As Integer = Cint(ConfigurationSettings.AppSettings("ResultsPerPage")) ' The number of results per page.
On the web config file i limit the result by showing this code:
<add key="ResultsPerPage" value="30"/>
I'm telling the application to show only 30 results.
But now i'm finding problem on how i should re-write the code so there is no limit on the results shown.
Can Anyone help
Thanks
Mac
I have this varaiable where it displays a set of record as stated from a web config file. The web configf file states the maximun record it could display.
I want to show all the result on that page instead of limiting it.
This is how it is declared in the aspx page:
Dim intResultsPerPage As Integer = Cint(ConfigurationSettings.AppSettings("ResultsPerPage")) ' The number of results per page.
On the web config file i limit the result by showing this code:
<add key="ResultsPerPage" value="30"/>
I'm telling the application to show only 30 results.
But now i'm finding problem on how i should re-write the code so there is no limit on the results shown.
Can Anyone help
Thanks
Mac