Bonjour,
j'ai une page ASP qui appelle un fichier xsl
Je voudrai incrémenter ma value (en rouge) en fonction du nombre de choix possible dans mon XML.
Je ne vois pas comment je peux faire, quelqu'un peut m'aider svp ?
Pour l'instant malheureusement n'importe quel boutton radio que je coche j'ai rep qui est égal à 1.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 <?xml version='1.0' encoding='ISO-8859-1' ?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:template match="/sondage"> <div style="border:1px solid #69BBA8;width:175px;padding-bottom:15px;padding:5px"> <span style="display:block;color:white;font-size:13px;background-color:#69BBA8;width:175px;padding:2px"><b>sondage ecoTV</b></span> <span class="question"><b><xsl:value-of select="question"/></b></span> <!-- <form method="GET" action="http://com-unity.staging.echonet/applis/wGroup/Dev/wGroup.nsf/aReponseSondage?"> --> <form method="GET" action="monurl"> <input type="hidden" name="openagent" value="" /> <xsl:for-each select="reponses/reponse" > <span class="reponse"> <input type="radio" name="rep" value="1" /> <span><xsl:value-of select="intitule" /></span> - <span><xsl:value-of select="classement" /></span></span> </xsl:for-each> <input type="submit" value="votez" class="button" /> </form> </div> </xsl:template> </xsl:stylesheet>
Partager