View Single Post
  #2 (permalink)  
Old 10-22-2007, 03:25 AM
mobilegeek mobilegeek is offline
D-Web Analyst
 
Join Date: Jun 2007
Posts: 205
mobilegeek is on a distinguished road
Smile Re: How to get values from querystring?

Hi vinoth,

Here is the syntax.

Code:
params[:param_name]
So say for example you're using pagination and you want the page_number param

list?page_number=1:

Code:
params[:page_number]params[:page_number]
that's it....
Reply With Quote