Saturday, March 24, 2012

Free Website Template for Business Site with jQuery Slider


Free Website Template for Business Site with jQuery Slider:
Free Website Template for Business Site with jQuery Slider
Feel free to get this free website template in two ways: with PSD source files included and without them. Follow the link below and download HTML source files. To download this theme with PSD source files, visit the Free Website Template for Business Site with jQuery Slider download page at TemplateMonster and type an email address that you want the free template package to be delivered to (don’t forget to uncheck the newsletter subscription checkbox in case you’re already subscribed, otherwise you may not be able to download the zip file). Feel free to use this template for your business, but you cannot resell it as a template.

High Look Websites Collections

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>