Category: Web Development
Setup New Project on GIT
This is a step-by-step guide to set up a new project from scratch on GIT, which also includes initializing GIt on your local project. These are the steps you need to follow: 1. The first step is to Login to
Sending email from the salesforce endpoint with .Net application
Emailing through Salesforce in the third-party applications can be achieved through Salesforce REST endpoint services/data/v61.0/actions/standard/emailSimple Below is the sample code in .Net for sending simple plain text email for emailing through Salesforce public void SendEmailUsingSalesforce() { Dictionary mappings = new
Create an Unbound Column with Hyperlink in Devexpress WinForm GridControl
When manually writing the code for creating a column data source for Devexpress GridControl instead of using the designer window in WinForm Application, one needs to use properties and events in the correct way while using unbound data columns. The
Row-Level Security (RLS) in Power BI
Row-Level Security (RLS) in Power BI is a powerful feature that allows data access to be controlled at the row level. It ensures that different users see only the data relevant to them based on predefined roles or conditions. Implementing
How to Add a WEB URL Column in Power BI That Redirects to a Python Page with a Specific ID
Power BI is a powerful tool for creating interactive reports. Sometimes, you may want to make your reports more interactive by adding clickable links that take users to external pages. For example, you might have a table in Power BI
Totara Custom Report: Full Team Hierarchy Under a Manager
In Totara, it’s often important to view not only the direct reports of a manager but also the entire team structure beneath them, including all indirect reports. To address this, we created a custom SQL-based report that generates a complete
Sender Address Issue through Salesforce Email Service
Salesforce offers an Email Service feature that allows you to integrate third-party applications with Salesforce for email processing. Salesforce provides several APIs (Application Programming Interfaces) that developers can use to integrate email functionality with third-party applications. These APIs allow you
RAID Device Name Issue During Mounting
During the setup of RAID 1 for our server, I encountered an issue where the RAID array did not mount properly after a reboot. The key problem was related to the RAID device name, which affected how it was referenced
Page Controller pattern with an example in C#
The Page Controller pattern in C# is a design pattern used in web application development where each web page has its own controller to handle requests. This pattern is particularly useful in frameworks like ASP.NET MVC where the application is