How to update files of Azure hosted site

Originally posted on Rijwan Ansari:
There are few steps need to follow to edit and update files of application which are hosted in azure. Follow following steps. Login to azure portal, Click on App Services and Go to App Service Editor (Preview) under the Development Tools. ? 2. Click on GO . All the files of application will be listed on left side. 3. Click… Continue reading How to update files of Azure hosted site

Angular Basic Concept

Originally posted on Rijwan Ansari:
Angular Directives In Angular, Directives are good features for re-usability. -Directives are used for reusable purpose for example Time Picker Controller, Data Picker Controller, File Upload Controller as well as any kind of custom logic and custom validation to control that as required by the program. -Directives are like user control in ASP.NET Web Pages and HTML extension in ASP.NET… Continue reading Angular Basic Concept

Visual Studio Installation Guide for Starter

Originally posted on Rijwan Ansari:
Step 1: Make sure your computer is ready for Visual Studio whether your computer supports Visual Studio 2017 or not Please check the system requirements. Apply the latest Windows updates. These updates ensure that your computer has both the latest security updates and the required system components for Visual Studio. Reboot the computer to ensure any pending installs or updates are… Continue reading Visual Studio Installation Guide for Starter

How to Start with Materialize CSS

Originally posted on Rijwan Ansari:
The beginners may have some difficulties about how to start and learn the materialize design.  Here is a simple steps to learn and quick start with materialize design. Add the Following link <!–Import Google Icon Font–> <link href=”https://fonts.googleapis.com/icon?family=Material+Icons&#8221; rel=”stylesheet”> <!–Import materialize.css–> <link href=”~/css/materialize.min.css” rel=”stylesheet” /> <!–Let browser know website is optimized for mobile–> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″ /> <span data-mce-type=”bookmark”… Continue reading How to Start with Materialize CSS

How to set and get the session value in asp.net core.

Originally posted on Rijwan Ansari:
The Microsoft.AspNetCore.Session package provides middleware for managing session state. Add the following heightened line in your Startup.cs public void ConfigureServices(IServiceCollection services) { services.AddMvc(); // Adds a default in-memory implementation of IDistributedCache services.AddDistributedMemoryCache(); services.AddSession(options => { // Set a time for session options.IdleTimeout = TimeSpan.FromSeconds(200); options.Cookie.HttpOnly = true; }); } public void Configure(IApplicationBuilder app) { app.UseSession(); app.UseMvcWithDefaultRoute(); } Following line of… Continue reading How to set and get the session value in asp.net core.

How to Restore the deleted/quarantined items by Windows Defender?

Originally posted on Rijwan Ansari:
Sometimes Windows Defender can detect your custom app, .exe file or other files as a threat and might have been deleted by the defender. If you want to restore it back here are some steps to follow. Steps: Open the Windows Defender, you can directly open by typing Windows Defender Security Center in the search. 2. After opening, Click on Virus… Continue reading How to Restore the deleted/quarantined items by Windows Defender?

Searchable Dropdown in SharePoint /ASP.NET

Originally posted on Rijwan Ansari's Blog:
As we know that default dropdown list is not searchable. Simple way to create searchable in asp.net/SharePoint solution. Problem: Resolution: ( Converting simple dropdown list to searchable ) Add following CSS link in the page: <link href=”Content/choosen/docsupport/style.css” rel=”stylesheet” /> <link href=”Content/choosen/docsupport/prism.css” rel=”stylesheet” /> <link href=”Content/choosen/chosen.css” rel=”stylesheet” /> Add Following script link in page: http://Scripts/jquery-1.10.2.js http://Content/choosen/chosen.jquery.min.js <script… Continue reading Searchable Dropdown in SharePoint /ASP.NET

Security Trimmed Control in SharePoint 2013

This post explain about Security Trimmed Control and how to use in SharePoint with out custom coding. We can do security trimmed from SharePoint Designer for different users based of their permission. A user can be given a permission level like: Full Control Contribute Read Each Permission Level can map to different permissions like: Manage Web Add List Items View Pages Security Trimmed Control The … Continue reading Security Trimmed Control in SharePoint 2013

SharePoint 2013 – Introduction, Features, and Roles

Introduction Welcome to the world of SharePoint 2013. SharePoint 2013 Production version is released & Live implementations are going on. In this article I would like to re-iterate the features of SharePoint as a whole &  advantages of going with it. What is SharePoint? In short, SharePoint is a browser-based collaboration, content management, and extensible platform from Microsoft. The latest release of the product is … Continue reading SharePoint 2013 – Introduction, Features, and Roles