Posts

Disable Right click of mouse

How to disable right click functionality from the asp.net web page In some of the web page has the requirement to protect source code from the users. Users can right click the page and take the source code. In order protect right click functionality on the web page we can implement javascript functionality to prevent user’s right click on the web page. So user not able to access features available on the right click menus. By implementing javascript method we can identify the right click event from the user by checking the button code and prevent if the user clicks right click. Below mentioned web page prevented to click right click by the user. When the user trying to right click it will return warning message to user and return the action. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DisableRightClick.aspx.cs" Inherits="ExperimentLab.DisableRightClick" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitio

Crop image

How to crop image using ASP.Net/C# OR Cropping image in C# before upload

Asynchronous file up loader using ajax in ASP.Net

How to create asynchronous file up loader using ajax in ASP.Net

Balloon Popup Extender in ASP.Net/C# with New AjaxControl Toolkit

How to implement BalloonPopupExtender in ASP.Net/C# OR Ballon Popup Extender Sample in ASP.Net/C# Download Example

Hide buttons control from ribbon for specific list

Image
Hi , I want to hide "New Folder" button from ribbon of my library "Shared Documents" for site "SP2010-01".     To hide this button from ribbon for a Shared Documents, You must write this code : using (SPSite site = new SPSite("http://SP2010-01")) { using (SPWeb web = site.OpenWeb()) { SPList list = web.Lists.TryGetList("Shared Documents"); web.AllowUnsafeUpdates = true; SPUserCustomAction actionView = list.UserCustomActions.Add(); StringBuilder newurl = new StringBuilder(); newurl.AppendLine("<CommandUIExtension>"); newurl.AppendLine("     <CommandUIDefinitions>"); //Provide Location ID to hide the button newurl.AppendLine("        <CommandUIDefinition Location=\" Ribbon.Documents.New.NewFolder \">"); newurl.AppendLine("        </CommandUIDefinition>"); newurl.AppendLine("    </CommandUIDefinitions>");

DateTimeControl is not showing it’s calendar in proper format

Image
Hi, Some time we have to create our own customized asp form or visual web part or simple web parts where we use SharePoint’s Date Time Control . Some time that control works properly but some time this control does not show calendar in proper format as we see in SharePoint. Control should show calendar like : But instead of the format, It shows like this : If you want to change this format for default format you have to write this code: dateTimeControl1.DatePickerFrameUrl=ResoulveRul(SPContext.Current.Site.Url+”/_layouts/iframe.aspx”);

Make Read Only or Hide Fields in SharePoint 2010

Hi , If you want to make field as read only or hide fields , you must read this article. It is too good. Just download files & install as instructed. To read full article :  SPUtility To read documents : Documents To download code files : Download

Hide columns / fields in SharePoint

Image
Hi friends , If you want to hide columns / fields without writing codes & without any script, My article will help you to do the same. Just to start, open your SharePoint List & click on list setting button. Then click on “Advanced Setting”. In the Content Type section, set yes for   “Allow management of content types?” & press OK. Now go back to list setting and you will see an new section called “Content Types”. You will get list of content types here. Click on “Item”. You will all fields / columns Click on the column name , which you want to hide, in my case I am going to hide column “Planned End Date”, You will see field detail form. Click on the “Hidden (Will not appear in forms)” and press OK. Now check your all three forms New, Edit and display. You won’t see the field.

Close Model Dialog Box in SharePoint 2010

Hi , If you want to close your open dialog box, you can use below given scripts : To send cancel result on the parent form : SP.UI.ModalDialog.commonModalDialogClose(SP.UI.DialogResult.cancel,' Your Message Here   ');  also you can use this script to send Cancel result message on the parent form : window.frameElement.cancelPopup(); To send OK result on the parent form from current form : SP.UI.ModalDialog.commonModalDialogClose(SP.UI.DialogResult.OK, 'Your Message Here');  also you can use this script to send commit result message on the parent form : window.frameElement.commitPopup(); You can use this script in your programming to close the model dialog box in SharePoint 2010

How to change the existing Window Membership Provider to Claims Based Authentication in SharePoint 2010?

$WebAppName = "http://yourWebAppUrl" $wa = get-SPWebApplication $WebAppName $wa.UseClaimsAuthentication = $true $wa.Update() $account = "yourDomain\yourUser" $account = (New-SPClaimsPrincipal -identity $account -identitytype 1).ToEncodedString() $wa = get-SPWebApplication $WebAppName $zp = $wa.ZonePolicies("Default") $p = $zp.Add($account,"PSPolicy") $fc=$wa.PolicyRoles.GetSpecialRole("FullControl") $p.PolicyRoleBindings.Add($fc) $wa.Update() $wa.MigrateUsers($true) $wa.ProvisionGlobally() Source :  http://technet.microsoft.com/en-us/library/gg251985.aspx Extend a Web application that uses Windows-claims authentication (SharePoint Server 2010)