Hi Geoff
it isn't possible..... (I think i was not very clear)
the productlist is the code that is inserted in a single element of the data list used for made the product list.
This code is repeated more and more time.
What I need is insert some code before and some code after for change the kind of the list....
example:
product list (list of the product name with a link:
Fabio
it isn't possible..... (I think i was not very clear)
the productlist is the code that is inserted in a single element of the data list used for made the product list.
This code is repeated more and more time.
What I need is insert some code before and some code after for change the kind of the list....
example:
product list (list of the product name with a link:
<div class="name"> <a href="[TAG:LINK]">[TAG:PRODUCTNAME]</a>[TAG:EDITLINK]</div>
the output of product list is<div class="name"> <a href="/Myname1.aspx">My name 1</a></div>
<div class="name"> <a href="/Myname2.aspx">My name 2</a></div>
<div class="name"> <a href="/Myname3.aspx">My name 3</a></div>......
what I need to obtain is<div class="my new list">
<div class="name"> <a href="/Myname1.aspx">My name 1</a></div>
<div class="name"> <a href="/Myname2.aspx">My name 2</a></div>
<div class="name"> <a href="/Myname3.aspx">My name 3</a></div>
</div>
byeFabio