Is there a standard way to convert an XSD to an input form (ASP.NET C#) so that later on whenever a new field is added / removed from the XSD the field on the page automatically shows up or goes away respectively, is this something which needs to be developed in-house I assume there must be a way to serializes / deserializes and generates a form? Any hel would be appreciated..
Share
I don’t think there’s anything built in to make this fully automatic. However, you can get pretty close. Visual Studio includes a command line program called xsd.exe that you can use to automatically create a class definition from an xsd document. Once you have that class definition you can connect it to a form via an ObjectDataSource component and a DetailsView control.