博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HTML页和ashx之间关系的一点小应用
阅读量:4935 次
发布时间:2019-06-11

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

按 按钮 text中的值自动增加

 

html页

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "">

<html xmlns="">

<head>
    <title></title>
</head>
<body>
<form action="add.ashx">
<input type="text" value="0" name="txt" />
<input type="submit" value="加"  />
<input type="hidden" value="true" name="hidden" />
</form>
</body>
</html>

 

ashx页

<%@ WebHandler Language="C#" Class="add" %>

using System;

using System.Web;

public class add : IHttpHandler {

   
    public void ProcessRequest (HttpContext context) {
        int i = 0;
        string addtext;
        context.Response.ContentType = "text/html";
         string hidden=context.Request["hidden"];
        if(hidden=="true"){
         addtext = context.Request["txt"];     
         i = Convert.ToInt32(addtext);
        i++; 
    }
        string path=context.Server.MapPath("add.htm");
        string aaa = System.IO.File.ReadAllText(path);
        aaa=aaa.Replace("0", i.ToString());
        context.Response.Write(aaa);
    }
   
 
    public bool IsReusable {
        get {
            return false;
        }
    }

}

转载于:https://www.cnblogs.com/gongth-12/archive/2012/09/18/2791669.html

你可能感兴趣的文章
新增加的元素 相关操作获取不到
查看>>
Zabbix 3.0编译安装
查看>>
json介绍及简单示例
查看>>
h.264 率失真优化
查看>>
【转】拓扑排序入门
查看>>
Spring中Bean的命名问题(id和name区别)及ref和idref之间的区别
查看>>
How to install 64-bit Google Chrome 28+ on 64-bit RHEL/CentOS 6 or 7
查看>>
搭建LNAMP环境(三)- 源码安装Apache2.4
查看>>
linux --> fork()详解
查看>>
Spring注解 开发
查看>>
#!/bin/bash(转)
查看>>
BZOJ4589 Hard Nim(博弈+FWT)
查看>>
hdu 2473 Junk-Mail Filter 并查集删点,模板题
查看>>
【Maps】【搜狗】
查看>>
Linux命令详解-whatis
查看>>
分组求和
查看>>
eclipse 忽略 target 设置
查看>>
Reptile:requests代理IP
查看>>
HTML5应用缓存与Web Workers
查看>>
【并行计算-CUDA开发】英伟达硬件解码器分析
查看>>