Posts

Showing posts from January, 2010

Advanced ADO.Net Entity Framework

http://blogs.msdn.com/meek/ http://sharedtolearn.blogspot.com/ EF 4.0 http://blogs.msdn.com/b/somasegar/archive/2010/01/11/entity-framework-in-net-4.aspx Defining Advanced Models: http://msdn.microsoft.com/en-us/library/bb738640.aspx EF 4.0 Videos: http://www.youtube.com/watch?v=nkrYxGUZmvg   Entity Splitting & Table Splitting: http://www.robbagby.com/index.php?s=Entity+splitting

AJAX and the ASP.NET 2.0 Callback Framework

ASP.Net Client Callback model: http://edndoc.esri.com/arcobjects/9.2/NET_Server_Doc/developer/ADF/ajax_callback.htm http://msdn.microsoft.com/en-us/library/ms178210.aspx     Script Exploits Overview http://msdn.microsoft.com/en-us/library/w1sw53ds.aspx  

Creating & Adding Eventhandler to Sharepoint Doc Library

Adding Events & Registering Events: http://farhanfaiz.wordpress.com/2007/12/31/creating-adding-an-event-handler/ Get Available Events for Sharepoint Library: static void GetEvent()         {             using (SPSite site = new SPSite("http://moss2003/"))             {                 using (SPWeb web = site.OpenWeb())                 {                     SPDocumentLibrary doc = (SPDocumentLibrary)web.GetList("Shared Documents");                                        foreach (SPEventReceiverDefinition def in doc.EventReceivers)                     {                         Console.WriteLine("Name:{0}",def.Name);                     }                 }             }         } Work Around for Updating Event Fires Twice: http://support.microsoft.com/kb/939307/en-us if (properties.AfterProperties["vti_sourcecontrolcheckedoutby"] == null && properties.BeforeProperties["vti_sourcecontrolcheckedoutby"] !

CAML Query Tool

http://www.u2u.be/Res/Tools/CamlQueryBuilder.aspx