Posted in Payment Gateway on January 16, 2008 | Leave a Comment »
Hi Friends,Here is example how to integrate your application with Paypal using Standard Checkout option.But before some steps needed for developer you can ignore first two steps if you have paypal account. Steps are
First create your one developer account in paypal https://developer.paypal.com/
Now choose Test Accounts link and create one test account.
Note: While [...]
Read Full Post »
Hi
Here some steps to connect Firebird Database with Dotnet Framework.
First Check Firebird installed on your local pc or Server ? If no, Install Firebird 2.0
To connect Firebird with Dotnet, we need Firebird .Net Data provider dll, You can download same from
http://prdownloads.sourceforge.net/firebird/FirebirdClient-2.0.1.exe?download
In your project, add this dll as reference.
In web.config write the connection string for [...]
Read Full Post »
Posted in Javascript on January 3, 2008 | 1 Comment »
Fade Effects With Javascript
========================
Script
——-
<script language=”javascript” type=”text/javascript”>
var TimeToFade = 1000.0;
function fade(eid)
{
var element = document.getElementById(eid);
if(element == null)
return;
if(element.FadeState == null)
{
if(element.style.opacity == null
|| element.style.opacity == ”
[...]
Read Full Post »