tips & tricks


Calendario
aprile 2024
lmmgvsd
25262728293031
1234567
891011121314
15161718192021
22232425262728
293012345

Serialize Object to string

Serialize Object to string public static string Serialize(object o, Type T) { //this avoids xml document declaration XmlWriterSettings settings = new XmlWriterSettings() { Indent = false, OmitXmlDeclaration = true }; var stream = new MemoryStream(); using (XmlWriter xw = XmlWriter.Create(stream, settings)) { //this avoids xml namespace declarati 
Leggi tutto il post...
Categoria: C#
martedì, 23 gen 2018 Ore. 12.07

Change User Password in AD

Recuperare gli utenti in AD e fare il change della pwd.                   DirectoryEntry de = new DirectoryEntry(DC_LDAP_PATH, utente, vecchia, AuthenticationTypes.Secure);                 // Recupero il nodo utente                 DirectorySea 
Leggi tutto il post...
Categoria: C#
giovedì, 22 set 2011 Ore. 14.55

Articolo Su Agile Development

Ho trovato un articolo molto interessante sull'agile development nel blog di ciupaz:http://blogs.dotnethell.it/ciupaz/45-passi-per-diventare-%E2%80%9Cagili%E2%80%9D__15721.aspx  Alcuni dei punti che più mi piaciono e sostengo sempre: Lavora per il risultato   Al verificarsi di un problema ci si prodiga per cercare il colpevole o per risolverlo? Ovviamente la seconda opzione. È l’approccio positivo e il risultato finale quello che conta.   Scrivi i 
Leggi tutto il post...
Categoria: C#
martedì, 15 dic 2009 Ore. 14.23

Stringa di Connessione per Excell

Categoria: C#
mercoledì, 03 dic 2008 Ore. 15.27

WCF Documentation

WCF Documentation http://msdn2.microsoft.com/en-us/library/ ServiceContractAttribute [ServiceContract()] Indicates that an interface or a class defines a service contract in a Windows Communication Foundation (WCF) application. Use the ServiceContractAttribute attribute on an interface (or class) to define a service contract. Then use the OperationContractAttribute attribute on one or more of the class (or interface) methods to define the contract's service operations.   OperationCont 
Leggi tutto il post...
Categoria: C#
giovedì, 10 lug 2008 Ore. 15.56
Archivio Posts
Anno 2020

Anno 2018

Anno 2015

Anno 2013

Anno 2011

Anno 2010

Anno 2009

Anno 2008
Statistiche
  • Views Home Page: 13.356
  • Views Posts: 56.096
  • Views Gallerie: 2.837
  • n° Posts: 117
  • n° Commenti: 1
Copyright © 2002-2007 - Blogs 2.0
dotNetHell.it | Home Page Blogs
ASP.NET 2.0 Windows 2003