in

dotnet.org.za

South African .NET Developer Portal

Browse by Tags

  • MSCRM: Disabled fields are not persisted

    MSCRM allows you to disable certain fields on forms to prevent users from editing their values. I often have forms with disabled fields which mostly contain calculated values, done with an AJAX call to a webservice. It is prety easy to implement, and it's especially visually soothing to see the values...
    Posted to    Ernst Kuschke (Weblog) by Ernst Kuschke on 09-18-2006
  • Serializing- and Deserializing objects in .net

    I get asked how to do this many times; here are two quick methods to serialize as well as deserialize objects in .NET: private static string SerializeObject( object o) { StringWriter sw = new StringWriter (); new XmlSerializer (o.GetType()).Serialize(sw, o); return sw.ToString(); } private static T DeserializeObject<T>...
    Posted to    Ernst Kuschke (Weblog) by Ernst Kuschke on 07-31-2006
Page 1 of 1 (2 items)
Powered by Community Server (Commercial Edition), by Telligent Systems