grails - Calling a .gsp page -
grails - Calling a .gsp page -
i made re-create of index.gsp, called index_1.gsp , phone call html page.
since did know how phone call html page tried phone call index_1.gsp controller using command: redirect(uri: "/index_1.gsp"), failed.
i appreciate if help me phone call either html page or controller. thanks
you cannot phone call gsp html page. doesn't create sense.
if want render view controller can this...
class somecontroller { def someaction() { // render grails-app/views/some/index_1.gsp render view: 'index_1' } } grails gsp
Comments
Post a Comment