<assetset:getattributevalues name="sachin" attribute="Date_SV" listvarname="date_sv" typename="Content_Att" />
the above is normally the code to get value of Flex attribute when writing a template code. In fact typename is used for specifying Flex Attribute type.
What is the code for Page attribute? Secondly, what should the "typename" value be to get the value of Page attribute?
Here is an example of use to get a page attribute "article" :
However I don't recommend you to use this method if you are using WCS 12g : it is better to use controllers. The new philosophy is to read all your asset in your groovy controller and then use JSTL to render the values of your asset in your JSP.
Here are some code for the groovy controller :
And here is the code in your JSP :
Enjoy the ease of use ...