vote up 0 vote down star

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.

flag

50% accept rate

1 Answer

vote up 0 vote down

What version of Visual Studio are you using?

No matter which version you're using, you'll have to write an extension to the editor. That will be a lot easier in Visual Studio 2010 (beta 2 was just released - check it out).

Under no circumstances will it be as easy as turning on some switch.

link|flag
Using Visual Studio 2008. Yes, I figured it would not be easy. This is my fourth try in two years. That is why I figured the best developers on the web would be able to help me. – AMissico Oct 26 at 1:23
My thought is I can add the xsl.xsd schema from "C:\Program Files\Microsoft Visual Studio 9.0\Xml\Schemas" to "C:\Program Files\Microsoft Visual Studio 9.0\Common7\Packages\schemas\html" with just a change in "xs:schema" element. – AMissico Oct 26 at 1:25
I very strongly suggest you look at VS2010. The editor is now far easier to customize. You're wasting your time doing it with VS2008, as the editor has largely been rewritten. – John Saunders Oct 26 at 1:26
I don't have a choice right now, and if I can't do it in a couple of hours, it will have to wait again. – AMissico Oct 26 at 1:29
You're not going to get it done that way. You could get it done using VS2010 just as an editor. OTOH, If using VS2008 SP1, the XML editor is now extensible. I don't know if the examples are now in the VS SDK or not, but do an MSDN search for XML editor extensibility. – John Saunders Oct 26 at 4:35
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.