Tutorials on ASP.NET Core, Blazor, jQuery, JavaScript, Entity Framework, Identity, WordPress, SQL, HTML & more


Tutorial – Populate ASP.NET MVC Dropdownlist with ViewBag and Model values

Last Updated: June 7, 2021

asp.net mvc dropdownlist

Sometimes it our ASP.NET MVC application it becomes necessary to populate dropdown with dynamic values such as from the database. So here in the controller you can create a list object of type SelectListItem, fill it with values and then send this object to the View.

(more…)

Creating jQuery Expand Collapse Panels In HTML with “minimum” codes

Last Updated: June 4, 2021

Creating Expandable & Collapsible Panels in jQuery

The jQuery Expand Collapse Panels are used for breaking content rich pages into separate sections. So they allow visitors to navigate easily to a particular section based on his choice. There is an arrow, which on clicking, reveals the content of the section. Developers always have the need to include these Expand Collapse Panels in their websites, and therefore they will find this tutorial useful.

(more…)

Tutorial on doing Backup and Restore of WordPress Website with Images

Last Updated: June 9, 2021

Backup and Restore

A website owner worst nightmare is when his website fails to load,due to been hacked or just fallen into pieces. Therefore it becomes very important for them to know how to take backup of their website, and restore it when there is a need to do so. In this tutorial I will explain how to do Backup and Restore of your WordPress website.

(more…)

Check Uncheck all checkbox Of ASP.NET Checkboxlist using jQuery

Last Updated: June 6, 2021

jquery check checkbox

The checkbox can be easily be checked or unchecked using jQuery with just a line of code. Suppose there is a checkbox in the web page, and you have to check or uncheck it using jQuery. Here you have to perform the given steps.

(more…)

How to create Responsive Web Design using CSS Media Queries

Last Updated: June 8, 2021

css media queries

With the increase in the number of people surfing internet with smartphones, it becomes necessary that your website works well in smartphones too. In technical term you need a responsive website. A Responsive Web Design will increase user engagement from all sorts of devices and lowers the bounce rate. It also brings SEO benefits to your website.

(more…)

jQuery Modal PopUp Window with Animation Effects – with Codes

Last Updated: June 4, 2021

jquery modal popup

Sometimes we need to show visitors some important message when they visit our website. It can be done with jQuery Modal (also known commonly as 'Popup'). Here jQuery is used to open a small message box on the center of the screen. In this message box we can show any message like welcome text, coupons, sale discounts or anything else.

(more…)

Implementing Google Contacts API Version 3.0 & OAuth 2.0 in cSharp and ASP.NET [Updated]

Last Updated: June 8, 2021

Google Contacts API

In this tutorial I will develop a web application to get all Google Contacts from a person account who authorizes the application. I will make it in Asp.Net platform and will use C# to communicate with the Google Contacts API.

(more…)

Implementing Yahoo Contact Reader In ASP.NET and cSharp

Last Updated: June 8, 2021

yahoo contact reader

In this tutorial I will explain how to use Yahoo API to read a person’s Yahoo contacts. In common language I create an App called Yahoo Contact Reader for anyone who authorizes it so that this app can access his Yahoo contacts. I will use C# to communicate with Yahoo API and my app is made in ASP.NET platform.

There are 2 steps in making a Yahoo Contact Reader App –

(more…)

Implementing Yahoo OAuth 2.0 in CSharp and Asp.Net

Last Updated: June 8, 2021

Yahoo Oauth 2.0

What is OAuth

OAuth is an open standard to authorize application to access user data from online servers without sharing user’s credentials. It is specifically designed to work in Hypertext Transfer Protocol (HTTP). OAuth provides access tokens to applications when the user gives approval, and through this access token the application can access the user’s data stored in online servers.

Today nearly all top service providers like Amazon, Google, Yahoo, Twitter, Microsoft and Facebook support OAuth and allow applications to access users data stored in their servers. The first version of OAuth known as OAuth 1.0 became live in April 2010 then the next version i.e. OAuth 2.0 came in October 2012.
(more…)

Trick – How to implement Session Authentication In ASP.NET

Last Updated: October 12, 2023

Authentication in ASP.NET

What is Authentication

Authentication is a process of identifying a person. It is commonly done through the use of login page which asks a user to enter his username and password. In ASP.NET websites you can do the authentication of a user by matching his user id and password with the one stored in the database. If both his username and password matches only then he is allowed to view secured areas of the website.

(more…)