码迷,mamicode.com
首页 > Web开发 > 详细

在Salesforce中向外公布Service去创建Lead,并且用Asp.Net去调用此Service

时间:2014-11-14 15:35:43      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   ar   os   sp   for   

1):在Salesforce中如何配置,向外公布此Service,请看如下链接:

   http://www.shellblack.com/marketing/web-to-lead/ 

 

2):如何在Asp.Net中调用此Service去创建对应的Lead,请看如下代码:

            try
            {
                StringBuilder data = new StringBuilder();
                data.Append("oid=[youroid]");
                data.Append("&first_name=" + Server.UrlEncode(this.txtFirstName.Text));
                data.Append("&last_name=" + Server.UrlEncode(this.txtLastName.Text));
                data.Append("&email=" + Server.UrlEncode(this.txtEmail.Text));

                string url = "https://test.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8";
                HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url);
                req.Method = "POST";
                req.ContentType = "application/x-www-form-urlencoded";
                byte[] buffer = Encoding.UTF8.GetBytes(data.ToString());
                req.ContentLength = buffer.Length;
                using (Stream reqst = req.GetRequestStream())
                {
                    reqst.Write(buffer, 0, buffer.Length);
                }

                WebResponse response = req.GetResponse();
            }
            catch (Exception ex)
            {

            }

 

更多信息也可以看如下链接: https://success.salesforce.com/ideaView?id=08730000000Y07QAAS 

 

3): http://www.chronoengine.com/faqs/61-cfv4/cfv4-tutorials/4112-how-can-i-send-form-data-to-salesforce.html 

 

在Salesforce中向外公布Service去创建Lead,并且用Asp.Net去调用此Service

标签:style   blog   http   io   color   ar   os   sp   for   

原文地址:http://www.cnblogs.com/mingmingruyuedlut/p/4097341.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!