- X
- Web
-
MessageClientTest.aspx
基于Http的远程通讯例子 包括登录验证和反向调用
Stone
authored at
2012-03-16 00:40:19
X
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="MessageClientTest.aspx.cs"
Inherits="MessageClientTest" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Button ID="Button1" runat="server" Text="登录" onclick="Button1_Click" />
<asp:Button ID="Button2" runat="server" Text="获取管理员"
onclick="Button2_Click" />
</div>
</form>
</body>
</html>
|