I have an ASPX page that contains XHTML 1.1 and XSL. I want to add IntelliSense for XSL in the Web Forms designer for Visual Studio 2008. I also want the XHTML and XSL validated using the "Target Schema for Validation" feature.
I currently edit an ASPX page, which contains XSL, in the Web Forms designer. When processing, I invoke Server.Execute on the ASPX page and use the output to load a XslCompiledTransform object. I then transform XML data with the XslCompiledTransform that contains the ASPX page. The requirement is the user edits the ASPX page, and includes specific <xsl:value-of /> elements or other processing elements. I do not want to edit a XSLT file or use XSL templates.
An example is, <p>Thank you <xsl:value-of select="//Participant/FullName" /></p>
I want the Web Form designer to validate the user's XHTML and XSL and include IntelliSense for both.
How do I include IntelliSense and Validation for XHTML and XSL in the Web Form designer for ASPX in Visual Studio 2008? I want the user to edit a ASPX page and embed valid XSL where needed with the assistance of IntelliSense.
