AJM
AJM

Reputation: 32490

C# Using XSD schema as meta data for forms

I want to create a bunch of data entry screens in an ASP.NET application based on a bunch of XSD schemas.

Are there any tools that can be used to do any of the following 1) Read in an XSD schema and generate C# busines objects 2) Read in an xsd schema and generate form controls.

Upvotes: 2

Views: 1530

Answers (2)

MattDavey
MattDavey

Reputation: 9017

For #2 you could check out XForms (http://www.w3.org/MarkUp/Forms/, http://en.wikibooks.org/wiki/XForms/Load_from_XML_Schema)

Upvotes: 1

rsbarro
rsbarro

Reputation: 27339

Yes, at least for #1. Check out xsd.exe. It is included in the framework.

See this page on MSDN for more info.

Upvotes: 2

Related Questions