A
Allan Ebdrup
I'm trying to XML serialize a Wizard control, but the following code:
StringWriter strWriter = new StringWriter();
XmlSerializer mySerializer = new XmlSerializer(typeof(Wizard1));
mySerializer.Serialize(strWriter, Wizard1);
Has the error "'_Default.Wizard1' is a 'field' but is used like a 'type' "
where I try to take typeof(Wizard1)
Can a Wizard control be XML serilized? and if so, how?
Kind Regards,
Allan Ebdrup
StringWriter strWriter = new StringWriter();
XmlSerializer mySerializer = new XmlSerializer(typeof(Wizard1));
mySerializer.Serialize(strWriter, Wizard1);
Has the error "'_Default.Wizard1' is a 'field' but is used like a 'type' "
where I try to take typeof(Wizard1)
Can a Wizard control be XML serilized? and if so, how?
Kind Regards,
Allan Ebdrup