Hi
I want to display only selected categories. Actually one at a time depending on querystring sent by user in URL.
For example, if user passes
http://localhost:8080/jforum/forums/list.page?firstyear as URL, only firstyear category should be displated.
ok, I could restrict the category listing by hard coding following code in forum_list.html
<#assign year = "firstyear">
<#if (category.name == year)>
How can this be done using querystring? If I add query
string to URL, it gives me "The requested resource () is not available." error.
Thanks in advance.
Anshul
[originally posted on jforum.net by anshul]