javascript - Grails- how to verify the value of a params in gsp? -


i have verify value of parameter send controller. how can in gsp using ?

assume url

http://testdomain.com/show?id=12&type=test 

you can access value of params in gsp using below code

${params.id}  ${params.type} 

this give 12 & test in gsp page


Comments