Skip to main content

Posts

IE 11 or Internet Explorer 11 64 bit stop browsing after updates

Dear All If you face a problem that IE / internet explorer stop working after update to IE 11 64 bit please follow the below steps 1) Open IE 2) Click Internet Options (Under gear icon) 3) Click Advance Option 4) Under Security Section select "Enable Enhanced Protected Mode *" Close your browser and restart it. Hope your browsing will work Regards 3art Technology Experts http://www.3art.tech

Increase threshold limit sharepoint list

The easiest and quickest solution is to change the list view threshold for the period you migrate the site, then change it back to default. To do this follow the steps: go to your  SP2013  Farm's Central Administration go to the " Manage Web Applications " under the " Application Management " section select the " Web Application " where you migrate the site click the " General Settings " dropdown and select " Resources Throttling " change the " List View Threshold " to 12000 if your library has 11000 pages migrate your site from SP2010 to SP2013 change the " List View Threshold " 50000 or the number your required . Regards 3art Technology Experts http://www.3art.tech

SharePoint ModelDialog or Model Dialog or Popup position problem with longer page

Dear All If you are facing a problem that Sharepoint Model Dialog is at the top of the page while your SP page is longer then update the following CSS in your custom master CSS file .ms-dlgContent { margin: auto !important; position: fixed !important; } The problem will be sorted out Regards 3art Technology Experts http://www.3art.tech

Adding Items to List in By using Admin account or Any other domain account

Dear All,  Some time you want to add the item in the list which user doesn't have a permission, the below code will impersonate the user in sharepoint to add the code in the list by using domain account  using System; using System.Collections.Generic; using System.Linq; using System.Text; //SharePoint namespace using Microsoft.SharePoint.Client; namespace AddItemsToList { class Program { static void Main(string[] args) { string siteUrl = "http://sharepointserver.com"; ClientContext clientContext = new ClientContext(siteUrl); clientContext.Credentials = newSystem.Net.NetworkCredential(@"domain/userName", "password","domain.com"); Web site = clientContext.Web; //Getting List List list = site.Lists.GetByTitle("Students"); //Adding Items to List ListItemCreationInformation listItemCreationInformation = newListItemCreationInformation(); ListItem listItem = list.AddItem(listItemCreationInformation); li...

AsEnumerable Missing or reference not found

Dear All I have problem locating my AsEnumerable extension method in my DataTabe (System.Data). Thank god for this post by Angel (http://blogs.msdn.com/angelsb/archive/2007/02/23/does-not-contain-a-definition-for.aspx) I was able to find this method once i have added reference to the following assembly. C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Data.DataSetExtensions.dll Try to do a dummy Build and you should be able to get it. Regards 3art Technology Experts http://www.3art.tech

Updatepanel or Enable Ajax in SharePoint webpart

Dear All It is really giving me a hard to get this techniques if you want to run the update panel in sharepoint 2013 webpart then you need to initialize the script manage by code   protected override void OnInit(EventArgs e)         {             base.OnInit(e);             InitializeControl();             // Register the ScriptManager             ScriptManager scriptManager = ScriptManager.GetCurrent(this.Page);             if (scriptManager == null)             {                 scriptManager = new ScriptManager();                 scriptManager.ID = "ScriptManager1";                 scriptManager.EnablePartialRendering = true;       ...