Wednesday, 6 November 2024
Send OTP Using C# MVC5
Tuesday, 22 October 2024
Razorpay payment gateway intergration C# ASP.Net MVC5
- 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
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.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);
Thursday, 27 June 2024
Install Let's Encrypt SSL into Godaddy shared Linux hosting
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
Tuesday, 9 April 2024
Online Clinic/Hospital Management Synopsis
Sunday, 25 February 2024
Online E-Content Sale Website | ASP.NET C# MVC | Free Source Code
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)
Home Page |
About Us |