Posts
The Techie Crunch
Cancel

Pass data to ASP.NET Web Service (ASMX) from Cross-Origin

Pass data to ASP.NET Web Service (ASMX) from Cross-Origin In this blog, we are going to create “Hello World” ASP.Net Web Service (ASMX) with parameter and allow request from cross-origin. Now her...

MySQL - Good Habits

In this article, we are going to learn few good habits that we can consider important aspect while work with MySQL to improve performance & troubleshoot as following below: 1 - Do not use stor...

SQL Server Database Permission Scripts

SQL Server Database Permission Scripts 1 - Script to get list of all database name and its user in SQL Server 1 2 3 4 5 6 7 8 USE MASTER GO SELECT SL.dbname AS 'Database Name',SL.name AS '...