2014-05-11 84 views
0

是可以發送到驗證號的應答? 它的失敗對我來說,我不知道爲什麼。Twilio試用帳號限制?

這是我的代碼。 第一的答覆頁.. sms.aspx ..

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="sms.aspx.cs" Inherits="CsharpTwilio.sms" %><?xml version="1.0" encoding="UTF-9"> 
<Response> 
    <Sms>Thanks for the message!</Sms> 
</Response> 

using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Web; 
using System.Web.UI; 
using System.Web.UI.WebControls; 

namespace CsharpTwilio 
{ 
    public partial class sms : System.Web.UI.Page 
    { 
     protected void Page_Load(object sender, EventArgs e) 
     { 
      string From=Request["From"]; 
      string To=Request["To"]; 
      string Body=Request["Body"]; 


     } 
    } 
} 

我發現我已經選擇了錯誤的編碼應該是UTF-9中的問題,版主可以關閉此爲已解決。

回答