博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
一般处理程序的加法器
阅读量:6373 次
发布时间:2019-06-23

本文共 1482 字,大约阅读时间需要 4 分钟。

1.在vs2010 写的

using System;

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

namespace _0722

{
    /// <summary>
    /// C06Cul 的摘要说明
    /// </summary>
    public class C06Cul : IHttpHandler
    {

        public void ProcessRequest(HttpContext context)

        {
            context.Response.ContentType = "text/plain";
            DateTime serverTime = DateTime.Now;
            string strNum1 = context.Request.Form["txtNum1"];
            string strNum2 = context.Request.Form["txtNum2"];
            int x = 0;
            int y = 0;
            int z = 0;
          if(!string.IsNullOrEmpty(context.Request.Form["hidIsPostBack"]))
           {
            if (!string.IsNullOrEmpty(strNum1) && !string.IsNullOrEmpty(strNum2))
            {
               
               
                if (int.TryParse(strNum1, out x) && int.TryParse(strNum2, out y))
                {
                    z = x + y;
                }
                //context.Response.Write(z.ToString());
           
            }
          }
            System.Text.StringBuilder sbHTML = new System.Text.StringBuilder();
            sbHTML.Append("<html><head><title>计算器</title></head><body><form action=''method='post'>");
            sbHTML.Append("<input type='txt'name='txtNum1'value='" + x.ToString() + "'/>+<input type='txt'name='txtNum2'value='" + y.ToString() + "'/>=<input type='txt'name='txtSum'value='" + z.ToString() + "'/><br/>");
            sbHTML.Append("<input type='submit'value='计算'>");
            sbHTML.Append("<input type='hidden'name='hidIsPostBack'value='1'/></form></body></html>");
           
            context.Response.Write(sbHTML.ToString());
            context.Response.Write("<div>Hello World!"+serverTime.ToString()+"</div>");
        }

        public bool IsReusable

        {
            get
            {
                return false;
            }
        }
    }
}

2.代码:

转载于:https://www.cnblogs.com/hao1234/archive/2011/07/22/2114296.html

你可能感兴趣的文章
机器人会消灭人类统治世界?你TM是在逗我么
查看>>
无华为,不智慧:智慧城市建设为何少不了华为?
查看>>
易到网约车许可证到手,终于能卖个好价钱了
查看>>
java是值传递还是引用传递
查看>>
阿里云推出“政务云” 助力政务机构推进互联网+
查看>>
高性能网络通信框架Netty-基础概念篇
查看>>
史上最严数据保护条例欧盟GDPR今日生效,你可能需要这版中文全文(上)
查看>>
2016中国“互联网+”创业创新大赛(华北+东北)赛区决赛成功举办 5支优胜团队晋级海口总决赛...
查看>>
BigMemory系列文章--5. Ehcache配置和统计数据
查看>>
「镁客·请讲」火柴全景VR徐晨翔:正值VR本命年,我们该做一些不一样的事情...
查看>>
区块链和“社会治理”之间千丝万缕的联系,听听工信部、信通院的大牛怎么说 | 数博会2018...
查看>>
hive在E-MapReduce集群的实践(一)hive异常排查入门
查看>>
PHP中获取当前页面的完整URL
查看>>
跟随机器人乐队Compressorhead,去享受一场另类的饕餮盛宴
查看>>
“九”答不可 | 量子信息能用来干什么?
查看>>
《Scikit-Learn与TensorFlow机器学习实用指南》 第3章 分类
查看>>
落地六合新区,苏美达战略先行促发展
查看>>
JSP的过滤器
查看>>
系统运行中的错误提示
查看>>
Nginx的TCP负载均衡介绍
查看>>