Posts

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.  

How to create android app easily?

Hello, Today i explain How to create android app. If you have a website then just follow below steps: 1. Go to http://web2apk.com/create.aspx 2. Enter your website name in url field. 3. And then enter your apps name in Apps title. 4. At last choose app logo (png)  and click "create my app" button. 5. After processing apk, you can download it from here.

mvc jquery save

<form action =" /Plugin/Ajax/ContactUs " class =" form-horizontal " id =" contact-form " method =" post " name =" contact-form "> <div class =" col-sm-6 "> <div class =" form-group "> <div class =" col-sm-12 "> <input class =" validate[required] form-control " id =" FullName " name =" FullName " placeholder =" Name " size =" 30 " type =" text " value ="" /> <label id =" lblName " name =" lblName " class =" errorlbl "> </label> </div> </div> <div class =" form-group "> <

Code first mvc

https://www.codeproject.com/Articles/826571/Code-First-Approach-with-ASP-NET-MVC-Framework

jquery save & fetch asp.net

Default.aspx: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">     <script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.min.js"></script>     <style type="text/css">         <style type="text/css">         body         {             font-family: Verdana;             font-size: 11px;         }             .errMsg         {             width: 200px;             text-align: left;             color: yellow;             font: 12px arial;             background: red;             padding: 5px;             display: none;         }               .tblResult         {             border-collapse: collapse;         }               .tblResult td      

desktop application connection string

namespace Payroll {     class Connection     {         private  static SqlConnection SqlCon;         //private readonly static SqlConnection SqlCon = new SqlConnection("Server=petunia.arvixe.com; database=visiondb; uid=vision1; password=vision2;");         public static SqlConnection CON         {             get             {               return   SqlCon = new SqlConnection("Server=WIN-PC\\SQLEXPRESS; database=Payroll;integrated Security=SSPI");             }         }     } }