Hi, There is two way to provide Credit Card Payment facility in your application 1. Install payment gateway (Costly Affair) 2. Take a serveice from 3rd party Second one is best for you, thay will provide a link, just add this link to your application and thay will handle all the burdun. visit this link for details: http://www.ccavenue.com/ Need more information, mail me:) Regards Gyanendra
CreativeBug
Posts
-
Credit Card Payment -
WEB config connection string !This link will help you http://msdn2.microsoft.com/en-us/library//ms178411.aspx Gyanendra
-
Scheduled mail deliveryHello, There is no direct way to send mail through ASP.net on sending date and time. For shedule the mail sending date, you have to create a window service, put timer control inside that and check that time with your shedule time and send a mail to user. Or create one consol appliation and add that application with window scheduler and fix the time.Scheduler automatically invoke your application on given time. I think this will help you ...
-
Scheduled mail deliveryHello, There is no direct way to send mail through ASP.net on shedule date and time. For shedule the mail sending date, you have to create a window service, put timer control inside that and check that time with your shedule time and send a mail to user. Or create one consol appliation and add that application with window scheduler and fix the time.Scheduler automatically invoke your application on given time. I think this will help you ...
-
Session VariableFirst thing i cleared you session is object, its not a variable. Session object is automatically created every time client browser access pages from your web site. Session object is specific for every user and varies from user to user. It can be used to store variables specific for a user and IIS will maintain these variables when the client moves across pages within your site. // create a new Session variable to store the users name Session ( 'Name' ) = 'Gyanendra'; // display the name in any page on your site Response.write( 'Your name is ' + Session ( 'Name' ) ) The problem that Session variables have to overcome is that the HTTP protocol that you use to browse the web is stateless. Each request for a page is completely independant of earlier requests, so if you want subsequent pages to "remember" the users name that he entered on your front page you have to store that information somewhere. Happy Programming Gyanendra