当前位置: 首页>>代码示例>>C#>>正文


C# DataLayer.UpgradeMembership方法代码示例

本文整理汇总了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
                {
开发者ID:chevex-archived,项目名称:ReferralNetworX,代码行数:67,代码来源:UpgradeMembership.aspx.cs


注:本文中的DataLayer.UpgradeMembership方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。