I want design something like…
<DB[0]><xsl:value-of select="test"><DB[0]>
which will update the database table field DB[0] with data test.
But it’s not working …as xsl is not allowing [] bracket.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In case you need to create a well-formed XML document, then a string like “
<DB[0]>” isn’t a legal name.In case you want to create just text, you can alwyas do so by specifying:
<xsl:output method="text"/>So, this transformation:
when applied on this XML document:
produces: