Posts

Showing posts from 2019

EasyPay - ICICI payment gateway implimentation

Request: Payment.aspx <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Payment.aspx.vb" Inherits="Payment" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server">     </head> <body>     <form id="form1" runat="server">     <div>     <h1>Payment information</h1>         <asp:Label ID="lblid" runat="server"></asp:Label>     </div>     </form> </body> </html> Payment.aspx.vb Imports System.Security.Cryptography Partial Class Payment     Inherits System.Web.UI.Page     Dim a As New Aidni()     Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load  

What is OOPS?

Object Oriented Programming (OOP) is a programming structure where programs are organized around objects and data.