This is the code I found on the internet for the checkout button which uses paypal sandbox. My problem is how do I return to my main page? I'm using ASP.NET Development Server so the port is different every time I run the solution. The home page is Home.aspx
protected void btnPayNow_Click(object sender, System.Web.UI.ImageClickEventArgs e)
{
const string Server_URL = "https://www.sandbox.paypal.com/cgi-bin/webscr?";
const string return_URL = "http://www.PageWhenOk/default.aspx";
const string cancelreturn_URL = "http://www.PageWhenCancel.com/cc.fail.aspx";
string cmd = "_xclick";
string business = "email";
string item_name = "FashionStyle Product";
double baseamt = 49.00;//amount
int add = 1;
double amount = (double)ShoppingCart.Instance.GetSubTotal();
double shipping = 10.00;
double handling = 2.00;
int no_shipping = 1;
int no_note = 1;
string currency_code = "USD";
string lc = "EN";
string bn = "PP-BuyNowBF";
string basedes = "ILCV 49.00";
string redirect = "";
redirect += Server_URL;
redirect += "cmd=" + cmd;
redirect += "&business=" + business;
redirect += "&item_name=" + item_name;
redirect += "&baseamt=" + baseamt;
redirect += "&add=" + add;
redirect += "&amount=" + amount;
redirect += "&shipping=" + shipping;
redirect += "&handling=" + handling;
redirect += "&no_shipping=" + no_shipping;
redirect += "&no_note=" + no_note;
redirect += "¤cy_code=" + currency_code;
redirect += "&lc=" + lc;
redirect += "&bn=" + bn;
redirect += "&basedes=" + basedes;
redirect += "&return=" + return_URL;
redirect += "&cancel_return" + cancelreturn_URL;
for(int i = 1; i < 1001; i++)
{
ShoppingCart.Instance.RemoveItem(i);
}
//Redirect to the payment page
Response.Redirect(redirect);
}