Tag - SSL

Webhooks vs. Polling

Webhooks vs. Polling

Modern software systems are more connected than ever. Applications exchange data, communicate in real time, and automate workflows without human intervention. Whether you are building a SaaS product, integrating payment systems, tracking orders, syncing data between platforms, or creating DevOps automation pipelines, you will eventually face a core architectural decision:

Top 10 Affordable Options To Host Your PostgreSQL Database

Top 10 Affordable Options To Host Your PostgreSQL Database

Strong, extensible, and SQL compliant, PostgreSQL—often just called Postgres—is an open-source relational database management system (RDBMS). It is now the first option that many developers, entrepreneurs, and large corporations use when searching for a dependable database solution. The speed of your application and your budget, however, can be greatly impacted...

From Start to Finish: A Comprehensive Walkthrough of Payment Gateway Integration

In today's digital era, online payments have become an integral part of businesses worldwide. Whether you're running an e-commerce store, a subscription-based service, or a donation platform, integrating a reliable payment gateway is crucial for seamless and secure transactions. However, for many, the process of payment gateway integration can be...

How to use Active Directory Membership Provider in ASP.NET

The ASP.NET membership feature provides secure credential storage for application users.We will use The following:Web page named Login.aspx and another web page named CreateUser.aspxLogin Control.Create User Wizard Control.Steps:1- Configure Forms Authentication in Web.config file.To configure forms authentication, set the <authentication> element's mode attribute to "Forms" and then configure your application's...

Send email using C#

We are going to use Gmail outgoing mail server in our code here to demonstrate how you can send an email from your application using C#SmtpClient oSmtpClient = new SmtpClient(); oSmtpClient.Host = "smtp.gmail.com"; //The Outgoing mail server oSmtpClient.Credentials = new NetworkCredential("Your Email", "Your password"); oSmtpClient.Port = 587; oSmtpClient.DeliveryMethod = SmtpDeliveryMethod.Network; oSmtpClient.EnableSsl = true; MailMessage msg =...

Password recovery web control

Password recovery web control can not send email via SSL mail servers in ASP.NET

We were using lately the login controls for ASP.NET in a website we are working on it. We discovered a bug or we can call it limitation in the password recovery web control. We used to use the membership provider and login controls, but we did not face this problem...