Exclusive webcast on SharePoint 2013
SharePoint 2013 is the new way to work together. A simplified user experience helps you organize, sync and share all your content. Join Microsoft team for an exclusive webcast on SharePoint 2013.
Day 1
Capabilities and features in SharePoint 2013
Day 2
Changes from SharePoint 2010 to SharePoint 2013
Start Date: 09/01/2013
Start Time: 15:00
Registration already closed.
Read the rest of this post »
January 6, 2013
·
Infoyen ·
No Comments
Tags: SharePoint · Posted in: SharePoint
Programmatically convert claim to classical authentication
Introduction:
I had a requirement where i am suppose to use sharepoint 2010 site with claim base authentication.
And need to insert sharepoint user in sql DB.
DB should get user name as “Domain\UserName”
December 5, 2012
·
Infoyen ·
No Comments
Tags: SharePoint, SharePoint 2010 · Posted in: SharePoint, SharePoint 2010
SharePoint 2010 PopUp Dialogs
Introduction:
In this article I will describe that how to create popup screen or model popup or dialog box in sharepoint 2010 which will look same as how sharepoint OOB popup screen appears on view/edit of list item.
Also I will explain that how to trigger C# code from popup on ok or cancel or on popup load. As well as; I will also explain that how to refresh main screen from popup on ok or cancel.
This article will have these below things:-
1. Custom framework to get popup screen (It use SharePoint 2010 dialog framework).
2. Dot Net user control with respect to each popup. Means; if you need 2 popup then create 2 user controls.
3. Sample user control which use this custom framework.
4. Download link to get all custom framework source code and sample user control source code.
Note: In end of article i will provide a link to download my custom framework classes which are explained in this article.
Read the rest of this post »
October 24, 2012
·
Infoyen ·
7 Comments
Tags: SharePoint, SharePoint 2010 · Posted in: SharePoint, SharePoint 2010
Event – business data connectivity with Microsoft SharePoint 2010
Its microsoft online event – business data connectivity with Microsoft SharePoint 2010
Registration already closed.
October 5, 2012
·
Infoyen ·
No Comments
Tags: SharePoint, SharePoint 2010 · Posted in: SharePoint, SharePoint 2010
disable resize in textarea
Introduction:
I was looking for text area css class to resize, stop resize etc for IE and firefox. Lots article found and some of them works for me. In this article i have given all classes which works for me.
September 8, 2012
·
Infoyen ·
No Comments
Tags: asp · Posted in: Tips & Tricks
Table Variables ms sql
Issue Detail:
When I drag and drop store procedure into DBML file (Linq to Sql dbml file) it throws below error:-
“Unknown Return Type – The return types for the following stored procedures could not be detectedâ€
or
“No return type for Store Procedure”
This happens due to various syntax issues which DBML does not like
For example:-
– Create temp table does not work in temp table, we should use Declare Table.
– Calculated fields some time does not work, they require cast
September 2, 2012
·
Infoyen ·
2 Comments
Tags: asp, MOSS, SharePoint, SharePoint 2010 · Posted in: ASP .NET, SharePoint, SharePoint 2010
pass multiple filter parameters to custom report viewer web part
Introduction:
Here I will explain that how to display ssrs report on sharepoint site which can accept custom multiple filter parameters.
I will highlights on requirement details, different approaches which does not work for me, Approach which work for me and Then I will explain the code for working approach.
Read the rest of this post »
August 25, 2012
·
Infoyen ·
10 Comments
Tags: SharePoint, SharePoint 2010 · Posted in: SharePoint, SharePoint 2010, WebPart
iframe onload event
Introduction:-
This article describe; How to add onload event on iframe? This help to perform some action once iframe get load.
For example; on button click i display loading image and as soon as iframe content loads ; i hide loading image.
Read the rest of this post »
July 21, 2012
·
Infoyen ·
2 Comments
Tags: asp, javascript · Posted in: ASP .NET, JavaScript
Add, Update and Delete List Items Programmatically in Sharepoint
Introduction:
In this article I will describe that how we can
– Add new item into sharepoint list programmatically.
– Update item into sharepoint list programmatically.
– Delete specific item from sharepoint list programmatically.
– Delete bunch of items from sharepoint list programmatically.
– Get list items from sharepoint list programmatically.
Read the rest of this post »
July 3, 2012
·
Infoyen ·
2 Comments
Tags: MOSS, SharePoint · Posted in: List, MOSS, SharePoint
Add User To SharePoint Group Programmatically
Introduction:
In this article I will describe that how to add Share point user to share point group programmatically.
This will use below terms:-
1. AllowUnsafeUpdates: Before we update we will set AllowUnsafeUpdates to true.
2. SPGroup: We will create object sharepoint group in which we need to user.
3. AddUser: SPGroup.AddUser will add user into group.
June 25, 2012
·
Infoyen ·
2 Comments
Tags: MOSS, SharePoint · Posted in: General, MOSS, Security, SharePoint