Delete
Do Record
Setting
Add New Item
Menu List
Title | Content Type | Order | Action | ||||||
---|---|---|---|---|---|---|---|---|---|
{{kb_content.name}} {{kb_content.name}} | {{setValue(content_types, kb_content.content_type)}} | {{kb_content.sort_order}} | Preview Edit Edit Content | ||||||
{{kb_content.name}} | {{setValue(content_types, kb_content.content_type)}} | {{kb_content.sort_order}} | Preview Edit Edit Content | ||||||
No record |
Status: published
Programming, Software and application
2020-10-14 16:12:27
Step 6: Create link to go one page to another page
1127
This is complete tutorial to build an application using grails 3.x. There are several parts of tutorial where every part has a specific objective and several steps. So it is a step by step tutorial to build a complete application using grails 3.x.
In web page, link is initial and most important tag. Basically link is called webpage. So in the grails , we can easily as like.
In the site/index page, add following link which redirect to about page
<h4>About Page : <g:link controller="site" action="about">Go To About Page</g:link> </h4>
In the site/about page, add following link which back to home page
<h4>Home Page :<g:link absolute="true"> Home Page</g:link> </h4>
You can create different way this link in grails. For more, see - http://docs.grails.org/3.0.17/ref/Tags/link.html