Posts

Showing posts from December, 2018

Featured post

Logging in ASP.NET Core 3.1 Using NLog

Image
  NLog          NLog is an open source logging framework that provides a great flexibility and configurable options to log the insights of your application. It allows to select multiple targets like database, files, console, etc. at the same time so that user don’t have to maintain different configurations in code. This is the most widely used logging framework out there.  For more details :  https://nlog-project.org/    It is easy to implement in your Asp.Net core application. We'll see step by step with image.    1.     Open Visual Studio and Create new project 2.    Choose ASP.Net Core Web Application 3. Enter Name of project 4.  Choose Web Application  5.  Right Click on your project name and choose Manage Nudget packages.         Search these two nudget packages and install.            1. NLog.Config         2. NLog.Web.AspNetCore                   6.  Open Nlog.config file and paste the code.   <?xml version= "1.0" encoding= "utf-8" ?> < nlog

How to create Transparent Dropdown Menu in HTML and CSS in HINDI | 2018

Image
How to create transparent dropdown menu Download : click on the file name to be download their code.   index.html style.css transparent_image.jpg Step:1 Create an  index.html file 1 .  index.html <!DOCTYPE html> <html> <head> <title>Transparent Dropdown Menu</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <ul> <li><a>Home</a></li> <li><a>About Us</a> <ul> <li><a>Our Team</a></li> <li><a>Why Us</a></li> </ul> </li> <li><a>Contact Us</a> <ul> <li><a>Get In touch </a></li> <li><a>Direction</a></li> </ul> </li> <li><a>Blog</a></li>