How to get the session value and show into view in asp.net Core?
Post Views: 32 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…
How to set and get the session value in asp.net core.
Post Views: 143 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…
Searchable Dropdown in SharePoint /ASP.NET
Post Views: 67 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…
How to Restore the deleted/quarantined items by Windows Defender?
Post Views: 105 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…
SharePoint Future : Roadmap to the Future of SharePoint
Post Views: 18 “The Future of SharePoint is Bright,” says Seth Patton, General Manager for SharePoint and OneDrive. This was the overarching theme in a 110-minute live online event made…
ASP.Net Interview Question and Answers for Mid Level
Post Views: 27 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…
SQL Server Interview Question for Mid Level
Post Views: 23 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:…
SQL Server Interview Questions and Answers for Mid Level
Post Views: 18 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:…
Office 365: Powershell Script to Uninstall the SharePoint App
Post Views: 27 Sometime O365 SharePoint Online will not allow uninstall app hosted. It will give you error as “Some things went wrong” or “Unable to Uninstall” and gives you…