xsl problem

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • akg250978
    New Member
    • Jul 2006
    • 2

    #1

    xsl problem

    hello! i hope any1 in this forum can help me with my xsl problem, i am quite new to this programming and learning as i go along, this all part of my work,

    so for i was doing great till i came across this problem?

    the problem is my dropdown menu, the drop down is in html and when u select on of the option the value in theory should go in the xsl fields code below! it works if u just made it a input field, but no in the dropdown, any1 can give me a solution please! field names are made up (marvel and dc) could not think of other names


    Code:
    <td class="SubTitle3">Release Documents :                 <select class="Text">
             <option value="Marvel">Marvel
             </option>
                        <xsl:attribute name="value">
                   <xsl:value-of select="field/Comic"/>
              </xsl:attribute>
        
                       <option value="DC">Dc
           </option>
             <xsl:attribute name="value">
                <xsl:value-of select="field/Comic"/>
             </xsl:attribute>
    
        </select></td>
    Last edited by Dormilich; Jan 21 '09, 12:01 PM. Reason: added [code] tags
Working...