(Choose 1 answer)
To transform from an XML file to HTML by using XSTL in JSP, we loaded content of two files by the following statements:
<c:import url="data/breakfast.xml" var="xmlDoc" />
<c:import url="data/breakfast.xsl" var="xsIDoc" />
Which of the following statement is correct to transform?
A. <x.transform xml="$xmlDoc" xslt="$xsIDoc" />
B. <x:transform xml="${xmlDoc}" xslt="${xslDoc}" />
C. <x:transform xml="{xmlDoc}" xslt="{xslDoc}" />
D. <?x:transform xml="$xmlDoc" xslt="$xsIDoc" ?>