Code Master - A reference guide for programmer's

Programming is fun and interesting. As you all know, sometime we programmers stucks in the middle way of coding without getting a solution. Blogs like this will help us to find a path to solve our problems. The contents of this blog are the solutions that I found by myself and from other sources. Sharing such solutions is also interesting. Thank you!

Friday, July 1, 2022

SQL query to get all column names of a table - SQL Qury

›
SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'Your-Table-Name' ORDER BY ORDINAL_POSITION
Sunday, March 27, 2022

Validate dd/mm/yyyy on input keyup jQuery

›
 Format: dd/mm/yyyy $(document).on("keyup", ".input-date-only", function () { var inputVal = $(this).val(); le...
Tuesday, March 8, 2022

IdentityServer4 .NET Core Ajax Call not working after page is idle for several minutes #Solved

›
I have faced this problem while trying to implement IdentityServer4 in Microservice .net core project. I tried several codes and spend many ...
Monday, March 7, 2022

SocketException: An attempt was made to access a socket in a way forbidden by its access permissions.

›
I restarted this service:  Host Network Service  on windows  Services  program. And it worked. Open windows terminal as Admin and run the fo...
Sunday, October 28, 2018

Search Inside a SQL Procedure

›
SELECT DISTINCT o.name AS Object_Name, o.type_desc FROM sys.sql_modules m INNER JOIN sys.objects o ...
›
Home
View web version
Powered by Blogger.