So, as I threatened to do in an earlier post, I'm writing a user control to pull URL parameters into the document. It seems to me the best place to put them would be as a property in the current node. Looking at the Property class in umbraco nodeFactory, it looks like it can only be a string. What I would ultimately like to do is set it up something like:
Code:
<data alias="URLParameters">
<param name="Flies">
<value>PMD</value>
<value>BWO</value>
</param>
<param name="Rods">
<value>Sage</value>
<value>Winston</value>
<value>Zebco</value>
</param>
</data>
Both of the parameters shown would are comma separated lists in this example. I can get the parameters fine, but can anyone offer some insight on where to go from here? Thanks!