Disable right click on a specific div
Post Views: 63 This is very common that we get requirement or scope to disable some specific div(s) or section because of security reasons. Simple solution: Add Example Another Solution,…
Learn developer and data technologies with us
Post Views: 63 This is very common that we get requirement or scope to disable some specific div(s) or section because of security reasons. Simple solution: Add Example Another Solution,…
Post Views: 1,208 External Js File is not working in Angular I found that sometimes, some external js will not work or load correctly in angular solution specially while designing…
Post Views: 519 We might get this error sometimes while running add-migration command. Error: The term ‘Add-Migration’ is not recognized as the name of a cmdlet, function, script file, or…
Post Views: 437 This compiler error occurs sometime because of version change where dotnet compiler version and c# version are incompatible. Error: Compilation ErrorDescription: An error occurred during the compilation of…
Post Views: 32 The angular cli for creating another module with its routing. ng g module /admin/home –routing –module=app The above command will create a module inside admin/home with it’s…
Post Views: 359 Some cases, our clients (SharePoint Client) may request to change the session time out of SharePoint sites. It is allowed to set timeout of the user session…
Post Views: 88 This error occurs because of missing dev dependency which is introduced newly in Angular 6.0 and above. Solution: Install @angular-devkit/build-angular In some cases npm install ng update…
Post Views: 147 More than one module matches. Use skip-import option to skip importing the component into the closest module. Command ng g component –skipTests /admin/home –module=app This command will…
Post Views: 457 Error: Failed to register URL “http://localhost:XXXX/” for site “SITE NAME” application “/”. Error description: The process cannot access the file because it is being used by another…
Post Views: 696 How to create a database view using Entity Framework Code first approach? User case scenario: There are several cases when your applications may need to display data…