不同平台之间通信,可以选择web server,TCP,UDP,一般处理程序,WEBAPI等等等等 不要跑
但是我一个都不会。慌死我了,怎么办怎么办怎么办................
我的一般处理程序都是依附在网页上面,网页上的按钮点击以后用action跳转到一般处理程序,然后一般处理程序会自动运行ProcessRequest方法。
网页代码:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<form method="get" action="Handler.ashx"> //get方法使提交的表单信息直接诶先
<input type="text" name="name" />
<button type="submit">嘿嘿嘿嘿</button>
</form>
</body>
</html>
一般处理程序代码:
<%@ WebHandler Language="C#" Class="Handler" %>
using System;
using System.Web;
public class Handler : IHttpHandler {
public void ProcessRequest (HttpContext context) { ///跳转到一般处理程序的页面就自动运行的方法
context.Response.ContentType = "text/html";
string res=context.Request["name"]; //获取传递过来的name属性的值;
string path = context.Server.MapPath("HtmlPage.html"); //获取网页地址
context.Response.Write(System.IO.File.ReadAllText(path)); //读出本地址的内容,然后写出来。
context.Response.Write((string.IsNullOrEmpty(res)) ? "你是不是傻,这都不知道" : "哇,你好厉害哟");
}
public bool IsReusable {
get {
return false;
}
}
}
就是发布一个网页到iis上面,能访问网页的东西,不管你是什么平台,就都能与本机交互了。