<?xml version="1.0"?>
<configuration>
<!--IIS经典模式下使用-->
<system.web>
<httpHandlers>
<add path="request.aspx" verb="*" type=" Bll.Handler.Test"/>
<add path="test.aspx" verb="*" type=" Bll.Handler.Test"/>
</httpHandlers>
</system.web>
<!--IIS集成模式下使用-->
<!--<system.webServer>
<handlers>
<add name="request" path="request.aspx" verb="*" type=" Bll.Handler.Test"/>
<add name="test" path="test.aspx" verb="*" type=" Bll.Handler.Test"/>
</handlers>
</system.webServer>-->
</configuration>
<add path="request.aspx" verb="*" type=" Bll.Handler.Test"/>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web;
using Bll;
namespace Bll.Handler
{
class Test : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
//接收这个参数
string strtext = context.Request["strtext"].Trim();
//输出这个参数
context.Response.Write(strtext);
}
public bool IsReusable
{
get
{
return false;
}
}
}
}
yya5119 发表于 2015-8-26 11:53
首先谢谢飞哥给的例子 我是第一次做通信方面的 在这有几个问题请您解答下
这是webservice原始代码
欢迎光临 苏飞论坛 (http://www.sufeinet.com/) | Powered by Discuz! X3.4 |