Hi, You put all your html files in public directory. And just use url like http://example.com/example.html, if you have example.html in your public directory.
Thanks, -Sadeesh.
Hi, You put all your html files in public directory. And just use url like http://example.com/example.html, if you have example.html in your public directory.
Thanks, -Sadeesh.
Create a seperate controller and on top of that write layout nil Put all the methods which dont need layout on that controller and save the corresponding views in the views/popup folder
Sijo
Had u tried in this way
class PopUpController < ApplicationController
layout “main”, :except => [:ur_action1,:ur_action2,:ur_action3]…
Bala