Skip to main content

Posts

Showing posts from February, 2021

What is SSL Certificate and Why it is Important for Websites

                                                   SSL Certificate What is SSL Certificate? SSL certificate means secure sockets layer  is a digital certificate that used to secure data transfers ,credit card transactions ,logins and other personal information are transfer by the authenticates and identity of a website, and encrypts sensitive information's and others cannot intercepted without intended recipients. An SSL certificate is getting on every website now a days even on static website also . on some years before ecommerce website only get the SSL certificate because of secure transaction. If you own a website or a blog in current year you will need, In recent years are SSL certificate is more important are needed for every website. SSL certificate are not much cost and when you want to install an SSL certificate its go through a validation proce...

How to get start an Business in Online and Profitable Ideas

How to get start an Business in Online and Profitable Ideas                                                           If you are watching this article may probably because you are thinking about starting your own business or may be you're not thinking about it, may be wanna to starting your business and just not sure exactly what you need to do. In this article we want to gonna walk through how to think like a customer and and 8 steps you need to follow in order to start your own business in this period. step 1: Start your Business Ideas Now before we are get into first step, here's what I want you to know .It's better for you to start your business with 100% confident maybe it's the best idea and trust it's going to work out . First of all, the experience you get from starting your own business is going to be invaluable. Whether the business s...

How to get response data from ajax call

 How to get response data from ajax call In this tutorial how to get response data from ajax call in Post method. Ajax is not a programming language. what is Ajax ? Ajax is a Asynchronous JavaScript and Xml .Ajax is the sever controls add script and page excuted and processed by the browser and cross platform speed up the response time. Ajax is the server controls method and handles with them and asp.net having event handlers for  ajax server controls . and in this tutroial to get a data from post methods and display data using mouseover event .  A browser built-in XMLHttpRequest object (to request data from a web server). JavaScript and HTML DOM (to display or use the data). AJAX allows web pages to be updated asynchronously by exchanging data with a web server update  of a web page, without reloading the whole page. Create an XMLHttpRequest Object:- variable = new XMLHttpRequest(); var req = new XMLHttpRequest(); Send a Request To a Server Method:- re...

How to use Left outer join in SQL Database Server

 How to use Left outer  join in SQL Database Server In this tutorial, you will see the complete steps to create or use  a Left outer Join table in SQL Database Server Management Studio 2019 (SSMS) You will also learn how to create a table using only Queries also. step to create a table in  SQL SERVER MANAGEMENT STUDIO (2019) Step 1.create a database  If you haven't create already so, create a database in SQL Server Management Studio. For illustration purposes, a database called sqlinner was created: or Using to Create SQL query Method: Create database sqlinner; Use sqlinner; Step 2: Create a table Under your database (for example sqlinner), right-click on the Tables folder, and then select Table.  from the drop-down list:  You will  be able to create your table. For example, let’s say that you want to create a table called brand. This table will have 4 columns: brandId Name Brand Available or Using  SQL query method: Crea...

what is an INNER JOIN in SQL SERVER

              INNER JOIN in SQL SERVER In this tutorial, you will see the complete steps to create a Inner Join table in SQL Server Management Studio 2019 (SSMS) You will also learn how to create a table using only Queries also. step to create a table in  SQL SERVER MANAGEMENT STUDIO (2019) Step 1.create a database  If you haven't create already so, create a database in SQL Server Management Studio. For illustration purposes, a database called sqlinner was created: or Using to Create SQL query Method: Create database sqlinner; Use sqlinner; Step 2: Create a table Under your database (for example sqlinner), right-click on the Tables folder, and then select Table.  from the drop-down list:  You will  be able to create your table. For example, let’s say that you want to create a table called brand. This table will have 4 columns: brandId Name Brand Available or Using  SQL query method: Create table brand (brandId ...