Categories
- ASP.net (21)
- AJAX (2)
- BI (1)
- C# (3)
- Crystal Report (1)
- Entity Framework (1)
- Event Log (1)
- Google API (1)
- JQuery (1)
- LINQ (1)
- WCF (2)
- WWF (1)
- SAP (1)
- SharePoint (14)
- Sharepoint 2007 (4)
- SharePoint 2010 (7)
- SQL (1)
- Team Foundation Server (9)
- Uncategorized (1)
- ASP.net (21)
Twitter
- Holy Macaroni! Barilla Takes to the Cloud lnkd.in/ZnPepR10 5 months ago
- SharePoint Conference 2012 lnkd.in/rSnEks10 6 months ago
- I love Dropbox because easy to use db.tt/8g6OtMz710 7 months ago
- Announcing the release of .NET Framework 4.5 RTM - Product and Source Code - .NET Blog - Site Home - MSDN Blogs blogs.msdn.com/b/dotnet/archi…10 9 months ago
- Create announcement item ticker by using JQuery and SPServices into SharePoint sharedude.net10 10 months ago
Archives
My Achievements

My Achievements
Microsoft Virtual Profile
Click here to access virtual profile.Tag Cloud
.net Add solution AJAX Android ASP.net Asp.net Google API BI C# Crystal Report custom development Data Binding Data Rendering delete solution Event Log execute solution Gridview HTML 5 Hyperlink IFrame Parameters Powershell Quality Center REST Restart SAP PI Sharepoint Sharepoint 2007 SharePoint 2010 Sharepoint Deployment Shutdown Snippet SOAP Social Network TFS 2008 TFS; Team Foundation Server Themes ThickBox User Control Visual Source Safe; VSS; Source Control Visual Studio 2010 WCF Web Services Windows Communication Foundation Windows Server 2003 Workflow
Category Archives: SharePoint
Debugging mode does not run in SharePoint
What you need to do is follow the steps below to try again the debugging mode Start –> Run –> Enter %systemroot%\assembly\gac –> [ENTER]. From there, go up one folder, then into GAC_MSIL folder. Paste the pdb file with the … Continue reading
Override Global css from SharePoint 2010 to hide left navigation
If you look for hide the left navigation from SharePoint 2010, definitely you can use the below stylesheet to override the global css. Add this code in the content editor and apply the changes: <Style> #s4-leftpanel { display: none; … Continue reading
Using SharePoint Modal Dialog
SharePoint 2010 have introduces the new dialog framework for assist users to stay in the context of the page without navigate away from other page. The JavaScript object model provides the SP.UI.ModalDialog class to work with the dialog framework. In … Continue reading
How to setup form library at SharePoint 2010 Foundation?
Step 1: Create Web Application 1. Access SharePoint Central Administration 2. Click on Application Management and then click on manage web applications. 3. Click on new button to create a new web site. 4. Leave everything as default except under … Continue reading
SP Services(JQuery)–GetListItems for SharePoint Web Services
SPServices is a JQuery library abstract SharePoint web services and make them easy to use it. For more details about JQuery’s SP Services, click here. You able to learn more what are the features in codeplex. In codeplex, there are … Continue reading
Calling a SAP PI Web Service (using WCF bindings) from a SharePoint 2007 Workflow
There are 2 rules when calling a SAP PI web service from a SharePoint workflow: You have to use custom bindings to get authentication to work. After you’ve added your web service via the "Add Service" dialog, you have to … Continue reading
Manually installation package solution in SharePoint 2010
Step 1: Add Solution to SharePoint Farm Log in to a SharePoint server in your farm as a SharePoint farm administrator. Run the following command from a Windows command prompt: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\BIN\stsadm -o addsolution -filename "<full_path_to_your_sharepoint_installer_files>\Atlassian.Confluence.SharePoint2010.wsp" … Continue reading
How to find GUID of SharePoint List?
Go to respective List – >Click on Settings Menu – > Click on List Settings Link- > click on “Audience targeting settings” link under General Settings. -> Checked "Enable audience targeting -> Ok button. Now, we are in Audience targeting … Continue reading
Setup SharePoint site collection by using Powershell
Write-Host # define variables for script $SiteTitle = "Lab x – Best Practices" $SiteUrl = "http://intranet.contoso.com/sites/Labxx" $SiteTemplate = "STS#0" # check to ensure Microsoft.SharePoint.PowerShell is loaded $snapin = Get-PSSnapin | Where-Object {$_.Name -eq ‘Microsoft.SharePoint.Powershell’} if ($snapin -eq $null) { Write-Host … Continue reading
Installing and configuring SharePoint 2010
When I started to install SharePoint 2010, everything like a peanut step by step without face any block to complete the installation. It’s awesome! Microsoft have been improve features for setup SharePoint 2010 compare to SharePoint 2007. As it turns … Continue reading
Posted in SharePoint, SharePoint 2010
Leave a comment