Is there an ASP.NET/HTML5 control for editing XML using intellisense?

I wonder if there is a control that allows you to edit XML directly in the browser. Ideally, I need control that allows our non-specialist consultants to edit XML, which is validated based on the XSD schema. Intelisense is a must. So far, we are using a simple multi-line text file, which is just awful. We are looking for the best solution. Can someone help me with some tips please?

+3
source share
1 answer

Check out CodeMirror: http://codemirror.net/demo/xmlcomplete.html . This is probably the closest to your needs, as it is an open source javascript library.

Wikipedia also has a comparison of javascript-based code editors: http://en.wikipedia.org/wiki/Comparison_of_JavaScript-based_source_code_editors

+3
source

All Articles