Skip to main content

Posts

Showing posts from April, 2019

Shortcut keys which every windows user must know.

Shortcut keys play important role if we want to use the windows effectively. Window Key = Open or close start menu. Windows + E    =  Open the file explore.   Windows + D    = Show or hide the desktop. F11 = Minimize or Maximize the active window. Windows + S = Open search Windows + L = Lock the system . Window + R = Open the run dialog box. Windows + Tab = Open the task view. Windows + Space Bar = Switch input and language keyboard. Windows + Plus(+) = Open magnifier(To zoom in or zoom out).    Windows + A = Open Action center. Windows + T =  Move through the apps on taskbar.

Insert item in list using CSOM SharePoint

To insert item into list using csom code. You can create a consol application using visual studio and also use the code mentioned below. You can interact  with sharepoint list using JSOM,CSOM or using rest api. List operation using csom. using Microsoft.SharePoint.Client;  using System;  using System.Collections.Generic;  using System.Linq;  using System.Security;  using System.Text;  using System.Threading.Tasks;  namespace ConsoleApp1 { class Program { static void Main(string[] args) { using (ClientContext clientContext = new ClientContext("insert url upto list")) { string Uname = "Your ID"; string password = "Password";  SecureString Securepasseord = GetSecureString(password);  clientContext.Credentials = new SharePointOnlineCredentials(Uname, Securepasseord); clientContext.ExecuteQuery(); List oList = clientContext.Web.Lists.GetByTitle("metalist");  ListItemCreationInformation listCreationInformation = ne

Simplest way to get latest updates from blogs and website.

Simplest way to get latest update from blogs and website is RSS feed.To get all the latest updates from the websites or blogs need to subscribe the RSS feed of blog or website.What is RSS , what are RSS feeds , how we can use them. RSS is short form of Really simply syndication or rich site summary. If you want to save the time of visiting site or blog to get updates, you just need to subscribe the RSS feed. Subscribing the RSS feed is very easy and once you subscribe it, you can read updates delivered to you by RSS feeds using the "feed readers".