how can i call a template function of xsl when drop down is selected

bomberosags

New Member
I am trying to call a template function in the XSl code when the user selects an option in the dropdown \[code\]<xsl:element name="select"><xsl:attribute name="id"><xsl:value-of select="$l" /></xsl:attribute><xsl:attribute name="onchange"><xsl:value-of select="TEMPLATE SHOULD BE CALLED HERE"/></xsl:attribute> <option value="http://stackoverflow.com/questions/11076689/1">Select</option> <option value="http://stackoverflow.com/questions/11076689/2">Daily</option> <option value="http://stackoverflow.com/questions/11076689/3">Weekly</option> <option value="http://stackoverflow.com/questions/11076689/4">Monthly</option> <option value="http://stackoverflow.com/questions/11076689/5">RunOnStartup</option>\[/code\]can anyone tell me the syntax of calling the template.
 
Back
Top