飞信WEB接口的一个返回网页C#处理源码
来源:
发布时间:2010/11/8
浏览次数:2035
代码说明:“返回网页”是指飞信接口有事件发生时把事件信息发送到的网页地址,并不是给用户访问,所以处理接受的数据应保存到数据库,以便在别的网页提取出来呈现给用户;这个页面地址应在发送登录时由reurl指定提交给接口服务器的。
详情参见http://io.feirobot.cn/的说明
以下WebDbClass控件是我的自定义数据库控件,请换成实际的数据库连接
protected WebDbClass MyDb = null;
protected void Page_Load(object sender, EventArgs e)
{
if (MyDb == null) MyDb = new WebDbClass();
try
{
string com = (string)Request["com"],fno=(string)Request["fno"],mno=(string)Request["mno"];
if (fno == String.Empty && mno==String.Empty)
{
Response.Write("号码信息错误");
MyDb.DbClose();
Response.End();
return;
}
if (com == "rmsg" || com == "senderr")
{
string MsgType = "新接收", rgno = "", tofno = (string)Request["rfno"], tomno = (string)Request["rmno"], msg = (string)Request["msg"], senderr = "";