本文整理汇总了C#中DataLayer.UpgradeMembership方法的典型用法代码示例。如果您正苦于以下问题:C# DataLayer.UpgradeMembership方法的具体用法?C# DataLayer.UpgradeMembership怎么用?C# DataLayer.UpgradeMembership使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DataLayer
的用法示例。
在下文中一共展示了DataLayer.UpgradeMembership方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: btnSubmit_Click
//.........这里部分代码省略.........
HttpWebRequest objRequest = (HttpWebRequest)WebRequest.Create(post_url);
objRequest.Method = "POST";
objRequest.ContentLength = post_string.Length;
objRequest.ContentType = "application/x-www-form-urlencoded";
// post data is sent as a stream
StreamWriter myWriter = null;
myWriter = new StreamWriter(objRequest.GetRequestStream());
myWriter.Write(post_string);
myWriter.Close();
// returned values are returned as a stream, then read into a string
String post_response;
HttpWebResponse objResponse = (HttpWebResponse)objRequest.GetResponse();
using (StreamReader responseStream = new StreamReader(objResponse.GetResponseStream()))
{
post_response = responseStream.ReadToEnd();
responseStream.Close();
}
// the response string is broken into an array
// The split character specified here must match the delimiting character specified above
String[] response_array = post_response.Split('|');
////////////////////////////////////////////////////////////////////////////////
DateTime dtNextBillDate = DateTime.Now;
string sSubscriptionID = "Free";
if (response_array[0] == "1")
{
dtNextBillDate = DateTime.Now.AddMonths(1);
ARB arb = new ARB();
sSubscriptionID = arb.CreateSubscription(tbxBillingCreditCard.Text, ddlBillingExpirationYear.SelectedValue + "-" + ddlBillingExpirationMonth.SelectedValue, tbxBillingFirstName.Text, tbxBillingLastName.Text, User.Identity.Name, sPrice, dtNextBillDate);
dl.UpgradeMembership(User.Identity.Name, sSubscriptionID, sMembershipType);
}
else if (response_array[0] == "2")
{
CustomValidator3.IsValid = false;
}
else if (response_array[0] == "3")
{
CustomValidator3.ErrorMessage = "There was an error in processing your transaction.<br />" + response_array[3];
CustomValidator3.IsValid = false;
}
else if (response_array[0] == "4")
{
CustomValidator3.ErrorMessage = "Held for review by Authorize.net.";
CustomValidator3.IsValid = false;
}
upgradeform.Visible = false;
receiptform.Visible = true;
customernextbilldate.InnerText = dtNextBillDate.ToString("D");
customernextbilldate2.InnerText = dtNextBillDate.ToString("D");
customername.InnerText = tbxBillingLastName.Text + ", " + tbxBillingFirstName.Text;
customersubscriptionid.InnerText = sSubscriptionID;
customeraddress.InnerText = tbxBillingAddress.Text;
customercity.InnerText = tbxBillingCity.Text;
customerstate.InnerText = ddlBillingState.SelectedValue;
customerzip.InnerText = tbxBillingZip.Text;
customerlast4.InnerText = tbxBillingCreditCard.Text.Remove(0, tbxBillingCreditCard.Text.Length - 4);
customerexpiration.InnerText = ddlBillingExpirationMonth.SelectedValue.PadLeft(2, '0') + "/" + ddlBillingExpirationYear.SelectedValue;
receiptprice.InnerText = sPrice;
}
else
{