Posts

Showing posts from 2009

SharePoint - Development and Programming Forum

Microsoft Ramp up Videos: http://msdn.microsoft.com/en-us/rampup/default.aspx Sharepoint Forum: http://social.msdn.microsoft.com/forums/en-US/sharepointdevelopment/threads/ How to Create a MOSS 2007 VPC Image: http://www.pptspaces.com/sharepointreporterblog/Lists/Posts/Post.aspx?ID=28 Sharepoint 2010 Videos (Channel 9): http://channel9.msdn.com/learn/courses/SharePoint2010Developer/

Inside Look at Developing with Microsoft® Windows® SharePoint® Services 3.0

WSS 3.0 Development Training: https://www.microsoftelearning.com/eLearning/courseDetail.aspx?courseId=61917&tab=overview

How To: Encrypt Configuration Sections in ASP.NET 2.0

The following Two URLs explains Encryption of Config Sections in ASP.Net2.0 http://aspnet.4guysfromrolla.com/articles/021506-1.aspx http://msdn.microsoft.com/en-us/library/ms998280.aspx

MSDN Magazine

http://www.nxtbook.com/nxtbooks/cmp/msdnmag1009/

Truncate/Shirnk ldf File in Sql Server2005

The following Sql Statements will clear .ldf file into normal size. Declare @logfile_id int Backup Log < > with No_Log Select @logfile_id = max(fileid) from dbo.sysfiles where name like '%log%' DBCC Shrinkfile (@logfile_id, truncateonly) My 10GB Database ldf came back to 2 MB. :-)

Microsoft Ajax 4 Preview 5: The DataView Control

http://weblogs.asp.net/infinitiesloop/archive/2009/09/10/microsoft-ajax-4-preview-5-the-dataview-control.aspx Dataview Control Complete Example: http://weblogs.asp.net/jimwang/archive/2008/11/05/working-with-ado-net-data-services-in-ajax.aspx

What is Windows Azure?

Good Article from SivaPrasad ... http://www.dotnetspark.com/kb/702-windows-azure-faq-part-1.aspx You can find lot of Sample Videos of SivaPrasad on Questpond.com http://www.questpond.com/demo.html Sharepoint Workflows using Designer: http://www.dotnetspark.com/kb/532-8-steps-to-create-workflows-using-sharepoint.aspx Sharepoint Basics By Siva Prasad: You can find five useful links from this web page. http://www.dotnetspark.com/kb/515-sharepoint-workflow-basics.aspx Differences between WCF & ASMX: http://www.keithelder.net/blog/archive/2008/10/17/WCF-vs-ASMX-WebServices.aspx Basics of WPF Databinding: http://msdn.microsoft.com/en-us/library/ms752347.aspx Sharepoint Six Series of FAQs ... Its almost explains Sharepoint  Model. http://www.codeproject.com/KB/aspnet/SharePoint.aspx

Webpart Overview

MSDN article for Webpart Overview: http://msdn.microsoft.com/en-us/library/ms432401.aspx

Open Source Bug Traker S/w

The Follwing is the open Source Bug Tracker Application, which is written in ASP.Net/C# and Sql Server2005. http://ifdefined.com/bugtrackernet.html Thank You.

Get SQL Records using XQuery

XML DataType Functions: Function Description Query Gets a set of nodes from an XML document/fragment (returns XML) Value Gets a single value from an element or attribute of an XML document/fragment (returns scalar value) Exist Returns a Boolean value indicating if the XQuery expression returns values Modify Changes values in an XML document/fragment Nodes Gets a context to a node based upon the XQuery expression The Following Query runs on AdventureWorks HumanResources.JobCandidate Table to get all Employee First Name & Last Name, Telephone Nos. SELECT Resume . query ( 'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/Resume"; data(/Resume/Name/Name.First)' ) FirstName , Resume . query ( 'declare default elemen

Get User Info from Active Directory using LDAP

using log4net; using System.DirectoryServices; public class ADUserInfo { public string ShortName { get ; set ; } public string DisplayName { get ; set ; } public string Email { get ; set ; } } The following method returns ADUser information: [ Serializable ] [ DataObject ( true )] public class ADUtilities { private static readonly ILog log = LogManager .GetLogger( typeof ( ADUtilities )); /// /// Returns UserInfo Object, /// Which contains User Display Name,Email Address /// /// User ShortName public static List < ADUserInfo > GetCurrentUserInfo( string _userName) { if ( String .IsNullOrEmpty(_userName)) { log.Error( "UserName is null or Empty for GetCurrentUserInfo[_userName]: " + _userName); return null ;