Thanks, But here now am facing another problem
class onepages_controller
before_filter :show
def onepage
// have to access show method variables
end
protected
def show
// here read the value from user via textfield
render 'onepages/onepage'
end
end
In my code, when i click on the onepage.html.erb, that have one textfield and button, where i have to read one value from user. so if i given like the above code, first check the before_filter,the show function will execute, but the show function doesn't getting the textfield value, Page will give error. Have any way to do that?
When i click on the onepage.html.erb. that have one button when i click on that button the show method will execute, after that i have to get that variables into onepage..How to get that variable?