I have run into a problem with XSLT transformation. I have input XML as bellow:
<root>
<photoname>image</photoname>
<photocount>3</photocount>
</root>
and i need transform it to following XML:
<root>
<response>
<images>
<image>
<small>image_1_120.jpg</small>
</image>
</images>
<images>
<image>
<small>image_2_120.jpg</small>
</image>
</images>
<images>
<image>
<small>image_3_120.jpg</small>
</image>
</images>
</response>
</root>
Is it possble to do with XSLT(or with C# functions in XSLT)?
<root><response><images>node be created ?