Calling AjaxMgr methods from Event attributes |
![]() ![]() ![]() |
In an XSLT Stylesheet document "{" and "}" characters have a special meaning when they are used in the attributes of the elements.
The {NAME} definition in the value attribute is replaced with the value of the XML node "NAME" during the XSLT processing. If we need those characters ("{" and "}") in the output HTML document then we have to double them as follows. XSL StyleSheet Document:
"{{" and "}}" existing in the attributes of the elements are transformed to "{" and "}" during transformation. Output HTML Document:
|