Wednesday, 6 November 2024

Send OTP Using C# MVC5

 



This blog post will guide you through implementing OTP verification during user signup using C# in ASP.NET MVC5. I've simplified the steps to make the OTP verification process clear and easy to Implement.

Tuesday, 22 October 2024

Razorpay payment gateway intergration C# ASP.Net MVC5

 

Streamline your payments with Razorpay integration in ASP.NET MVC5 using C#. This comprehensive guide provides step-by-step instructions and includes well-commented source code.

Key benefits:
  • Versatile application: The code can be seamlessly integrated into any e-commerce or web application requiring a secure payment gateway.
  • Real-world example: The accompanying sample code demonstrates a printing house scenario, similar to VistaPrint, where users upload PDFs for printing and utilize Razorpay for secure transactions.

Need help? Don't hesitate to reach out for assistance via email at rajkumar9795@gmail.com.

Screen Shots



Checkout

Checkout


Razorpay Payment Page

Monday, 26 August 2024

Enum C#

public  enum BranchCode
{

            Branch1=1,

            Branch2,

            Branch3

}

Console.Write(((int)BranchCode.Branch2));


Sunday, 30 June 2024

Fill date in input type date using javascript

<input type="date" name="DOB"  id="dob" placeholder="Date of Birth  " >

Input type date takes date in format of yyyy-mm-dd. But it will show you as per your local clock setting.

While editing A form we need to fill the date coming from the database into the date picker. You will have to change format yyyy-mm-dd otherwise date will not be show .

My date formate coming from the database is 15-05-1985
 <input type="hidden" id="ddob" value="@Model.DOB" />

var dt = new Date($("#ddob").val().split("/").reverse().join("/"));

        var td = dt.getFullYear() + "-";

        month = (dt.getMonth() + 1);

        if (month < 10)

            td += "0" + month;

        else

            td += month;

        td += "-";

        day = dt.getDate();

        if (day < 10)

            td += "0" + day;

        else

            td += day;       

        $("#dob").val(td);


Next Topic

Thursday, 27 June 2024

Install Let's Encrypt SSL into Godaddy shared Linux hosting

 



Let's Encrypt provide free SSL certificate. Mostly Hosting service provider automatically install Let's Encrypt SSL but some hosting provider like Godaddy doesn't support Let's Encrypt by default.

Thursday, 18 April 2024

Form Control Post C# ASP.Net MVC

 Form Post is a simple process to submit data to the server. C# works the same as other languages like PHP works. Problems arise with the radio button and checkbox. These controls are different from the textbox. So we need different ways to detect user selection. This is post will help you to learn checkbox and radio button selection using form POST.

Radio Button selection detect 

HTML

<form method="post" >
  <
input type="radio"  name="SalaryPerson" value="1" checked/> Salary Person
  <input type="radio" name="SalaryPerson" value="0" /> Self Empployee
 
<input type="submit" value="Save" >
</
form>

Wednesday, 17 April 2024

Query String URI in Route in Code codeigniter 4

 


You can pass some information using the query string. Query string is very useful for creating dynamic page. As you can see in the image given above, the Query string is a circle of red color. Page content will be changed as per the product ID provided. 

Tuesday, 9 April 2024

Online Clinic/Hospital Management Synopsis

 

Online Clinic/Hospital Management Synopsis

The Online Clinic Management System is a web-based application designed to streamline the administrative tasks of a Clinic/Hospital or healthcare facility. It provides a platform for managing patient records, appointments, billing, and other administrative functions in an efficient and organized manner. The system aims to enhance the overall efficiency and effectiveness of clinic operations while improving patient satisfaction.Live projects have been already made through this synopsis. This synopsis covers all the standards for the synopsis. So this can be used by BCA, MCA, Bsc, O-Level, A-Level, IGNOU students.

Sunday, 25 February 2024

Online E-Content Sale Website | ASP.NET C# MVC | Free Source Code

 


Sale your E-Content by Online Webinar Management Website with full free source code. A fully functional website with source code to sell E-Content material online. You can create profiles of teachers and their separate virtual web pages. Sale their content in the form of PDF, Audio, and video.  Customer management sale to invoice everything is covered. This project can be used as any student project from minor to major. Sample code is run by many business holders around the world. You will get a popular inbuilt payment gateway able to take payment INR or Dollars. SEO friendly fully optimized. 

Key Feature

  • Dynamic Website
  • Responsive Page design
  • Lightweight for speed optimization
  • SEO Friendly page
  • Fully Feature of E-Commerce 
  • Integrated payment gateway (Stripe,CC Avenue, Paypal)
  • Customer management
  • Customer communication
  • Chat boat
  • Speaker/Teacher/Auther separate webpage
  • Intergrated security Feature
  • Power of ASP.Net MVC C#
  • SQL Server Database
  • Cart and Order Management
  • Live running in many country
  • Email Notification

Front End Technology

  • HTML
  • CSS
  • Java Script
  • Angular JS
  • Jquery

Backend

  • C#
  • SQL Server

Framework (ASP.Net MVC 5)

Screenshot

Home Page About Us