What’s New in Visual Studio 2017
Post Views: 42 Visual Studio is a productivity game changer for C#! The .NET Compiler Platform (“Roslyn”) enables many new experiences that will change the way you write and debug…
Learn developer and data technologies with us
Post Views: 42 Visual Studio is a productivity game changer for C#! The .NET Compiler Platform (“Roslyn”) enables many new experiences that will change the way you write and debug…
Post Views: 26 Entity Framework Core is a lightweight, extensible, and cross-platform version of the popular Entity Framework data access technology. In this session we’ll look at what’s new in…
Post Views: 48 One way for this is: Get the session value and store it to View Bag in the controller and then show the view bag value to the…
Post Views: 156 The Microsoft.AspNetCore.Session package provides middleware for managing session state. Add the following heightened line in your Startup.cs [code language=”csharp”] public void ConfigureServices(IServiceCollection services) { services.AddMvc(); // Adds…
Post Views: 76 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…
Post Views: 36 1. What are the asp.net page life cycle, name cycle? Answer: PreInit() Init() InitComplete() PreLoad() Load() LoadComplete PreRender() Render() Unload() 2. What are the different Types of ASP.Net Validation…
Post Views: 30 1.Write the script to create Table. Answer: CREATE TABLE Test ( ID int, LastName varchar(255), FirstName varchar(255), Address varchar(100), ); 2. What is Primary Key Constraint? Answer:…
Post Views: 35 1.Write the script to create Table. Answer: CREATE TABLE Test ( ID int, LastName varchar(255), FirstName varchar(255), Address varchar(100), ); 2. What is Primary Key Constraint? Answer:…
Post Views: 68 I was using ViewState in custom developed SharePoint Solution to store date before saving to List because of some requirements. I found that the ViewState value was…
Post Views: 54 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…