I am asp.net programmer and I’ve started a web application in java.
What is the equivalent to asp.net masterpage in java apache wicket project?
I am asp.net programmer and I’ve started a web application in java. What is
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can / have to make your own Master Page.
In my apps I have a
BaseTemplateclass. The HTML looks like this:You can do general stuff like the
pagetitlein theBaseTemplateclass.<wicket:child />let’s you fill in content from another page. You have to subclassBaseTemplateand use the<wicket:extend>content goes here</wicket:extend>-tag for the HTML of the subclass(es).