Skip to main content

Posts

Step by step BCS in SharePoint2010

Hi friends, Through this blog I am going to share the e-Book on BCS in Sharepoint2010 which guide you in development for Business Connectivity Service in sharepoint2010.This books contains everything about BCS  with screens and real scenerio examples. Vijai Anand (Author of this e-book) have covered all possibles scenerio which required for BCS. Below are the Contents in this e-book: 1 Business data connectivity services: an overview 2 Configure business data connectivity services 3 Configure BCS service application association
Recent posts

SharePoint Branding Solution Pack using VS2010

Introduction Today, in this blog I am trying to provide you the Custom Branding solution Pack. This solution pack will save time and effort while developing the custom sharepoint with publishing sites in sharepoint. It works great. So, we all are good to go and use this re-usable solution pack. Description The source code shows how to prepare a structure for Sharepoint Branding solution. This pack contains : Master Page Gallery structure Page Layout Gallery structure Image Gallery Styles Library gallery Event Receiver

Tips n Tricks:Store Reusable code in Visual Studio

Hi friends, Through this articleI just want to share some tricks that we already have in visual studio. While doing development we always need some code/snippet that we are using regularly and to use the same code either we do copy and paste or we are writing the whole code again. We can achieve the same by below tricks: Hope you enjoy the article. This will be time saving for you.

Consistent SharePoint 2010 branding for Mobile browsers

Through this article I am going demonstrate you how to make consistent UI in sharepoint2010 in different mobile browsers. My mates every time asking me why we need to involve mobile device with SharePoint. Through this article I am just giving the sample where I am showing why we are slowly moving to mobiles from PC. While giving demo on "SharePoint on mobile" to client I found below things: Client want everything on their hand, means on mobile (Bcoz of busy schedule no time to open laptop/system) Client doesn't want to compromise with UI. Application should as simple and easy to use. Application should be scalable and easy to extend in future. Out of all four, below three is already provided by SharePoint. SharePoint is lacking somewhat in First point.  But as I said we developer can do anything so here we can do the same "We will bind the SharePoint without breaking SharePoint Rules". I am using safari browser for the demonstration because thro

Create Custom hit counter in SharePoint2010 using Sandbox Solution

In this blog I am going to demonstrate how to create Hit counter for SharePoint site with user details using sandbox solution. I took reference from codeplex code( http://hitcounter.codeplex.com ) which is sharepoint2007. I modified his sample and tried make it simple and easy for you. Once you understand the way I created then its very simple for you to make any further modification depends on your requirement. This solution will be very useful when you need detail about the person who visit this page and also about the number of time page view with page detail. I created this solution that will make your work easy. It's very simple where you don't need to do anything except deploying the feature and adding the web part into you master page or layout page in sharepoint2010. Below is the screenshot that will display the how it looks like:

Code for language translation

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML xmlns:o> <HEAD>   <TITLE>Gujarati translation-Ravishankar</TITLE>    <script type="text/javascript" src=" http://www.google.com/jsapi"></script >       <script type="text/javascript">       google.load("elements", "1", {       packages: "transliteration"        });       function onLoad() {      var options = {       sourceLanguage:        google.elements.transliteration.LanguageCode.ENGLISH,       destinationLanguage:        google.elements.transliteration.LanguageCode.GUJARATI,       shortcutKey: 'ctrl+g',       transliterationEnabled: true      };      var control =       new google.elements.transliteration.TransliterationControl(options);      control.makeTransliteratable(['transliterateTextarea']);       }       google.setOnLoadCallback(onLoad);      </script>