What is OOPS? Get link Facebook X Pinterest Email Other Apps - April 03, 2019 Object Oriented Programming (OOP) is a programming structure where programs are organized around objects and data. Get link Facebook X Pinterest Email Other Apps
How to get only File extension from path in c# - March 21, 2014 C# Code: string FilePath = "D:\\images\\1.png" ; string Extention = Path .GetExtension(FilePath); Read More »
EasyPay - ICICI payment gateway implimentation - August 16, 2019 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 ... Read More »
Mail Send With Pdf - February 10, 2017 protected void MailSendWithCoponPdf(string Email,string Coupon) { using (StringWriter sw = new StringWriter()) { using (HtmlTextWriter hw = new HtmlTextWriter(sw)) { string companyName = "xxxxxxxx"; string orderNo = "#2303"; StringBuilder sb = new StringBuilder(); sb.Append("<table width='100%' cellspacing='0' cellpadding='2'>"); sb.Append("<tr><td align='center' style='background-color: #18B5F0' colspan = '2'><b>Coupon</b></td></tr>"); sb.Append("<t... Read More »