Tuesday, March 13, 2012

Credit Card Processing Diagram

The customer submits his credit card for payment. 
Authorize.Net manages the complex routing of the data on behalf of the merchant through the following steps/entities. 

Authorize.Net passes the secure transaction information via a secure connection to the Processor. 

The issuing bank approves or declines the transaction based on the customer's available funds and passes the transaction results back to the credit card network. 

Authorize.Net stores the transaction results and sends them to the website for the customer and merchant to see. 

The merchant delivers goods or services to the buyer. 

The issuing bank sends the appropriate funds for the transaction to the credit card network, which passes the funds to the merchant's bank. 

UseFul Website Links:Credit Card Design in Asb.Net:




1.http://www.west-wind.com/presentations/aspnetecommerce/aspnetecommerce.asp
2.http://www.vbdotnetheaven.com/UploadFile/munnamax/PaymentGateway02152006022631AM/PaymentGateway.aspx?ArticleID=c3f8193b-3419-4c89-8c1e-ceb2d460df09&Pa.
3.http://www.authorize.net/resources/howitworksdiagram/.
4.http://www.dotnetheaven.com/Uploadfile/munnamax/ShoppingCart02102006010016AM/ShoppingCart.aspx.
5.http://www.vbdotnetheaven.com/UploadFile/munnamax/PaymentGateway02152006022631AM/PaymentGateway.aspx?ArticleID=c3f8193b-3419-4c89-8c1e-ceb2d460df09&Pa

Saturday, March 10, 2012

CSS anti aliasing text? How have they done this?

Using CSS, anti-aliasing can be stopped by using px (pixels) instead of pt (point). You must use a pixel font, Verdana at 10px or 12px will have not aliasing. (there are a bunch of web fonts that are not true pixel fonts that will display without aliasing with the px instead of pt method).
EXAMPLES:
Non-aliasing - 
<style type="text/css"> 
.whatever {color: 000000; font:10px 'Verdana'; text-decoration:none}
</style>
Will aliasing - 
<style type="text/css"> 
.whatever {color: 000000; font:10pt 'Verdana'; text-decoration:none} 
</style>

Tuesday, February 14, 2012

jQuery.Smart3D


jQuery.Smart3D

Interesting effects, which can be used on site-header. It’s very simple to use: several layers glued together into a 3D effect. See examples of using this jQuery plugin!

Demo preview

Plugn options

frameWidth (integer) (optional)
Width. You can set in CSS.
frameHeight (integer) (optional)
Height. You can set in CSS.
horizontal (boolean) (optional)
Default: true
vertical (boolean) (optional)
Default: true
firstStatic (boolean) (optional)
Default: false
lastStatic (boolean) (optional)
Default: false
invertHorizontal (boolean) (optional)
Default: false
invertVertical (boolean) (optional)
Default: false

Example:

1
2
3
$(function() {
    $('#mindscape').smart3d();
});
1
2
3
4
<ul id="mindscape">
    <li><img src=".../mindscape1.png" /></li>
    <li><img src=".../mindscape2.png" /></li>
</ul>
01
02
03
04
05
06
07
08
09
10
#mindscape {
    width: 720px;
    height: 170px;
    overflow: hidden;
    border:2px solid #444444;
}
#mindscape li{
    width: 844px;
    height: 170px;
}

Go to