form表单中隐藏类型input的使用

<form action="PersonSave.ashx" method="post">
        <input type="hidden" name="action" value="{action}"/>
        <input type="hidden" name="id" value="{id}"/>
        姓名:<input type="text" name="name" value="{name}" />年龄:<input type="text" name="age" value="{age}" />
        性别:(选上就是男的)<input type="checkbox" name="gender" {gender} />
        <input type="submit" value="保存" />
    </form>

表单保存时,若action为edit,那么后台则需要一个id来具体update哪条数据

        if (action=="edit")
            {
                int id = Convert.ToInt32(context.Request["id"]);
                SqlHelper.ExecuteNonQuery("update T_Persons set [email protected],[email protected],[email protected] where [email protected]",
                    new SqlParameter("@Name", strName),
                    new SqlParameter("@Age", strAge),
                    new SqlParameter("@Gender", (strGender!=null)),
                    new SqlParameter("@Id", id));
                context.Response.Redirect("PersonList.ashx");
            }
          

原文地址:https://www.cnblogs.com/HuShaoyi/p/8548386.html

时间: 2024-10-11 16:15:31

form表单中隐藏类型input的使用的相关文章

当form表单中只有一个input时按回车键将会自动将表单提交

添加一个<input type='text' style='display:none'/>不显示输入框,然后回车之后也不会提交.

springmvc如何将form表单中的对象类型绑定

原文:springmvc如何将form表单中的对象类型绑定 代码下载地址:http://www.zuidaima.com/share/1550463256054784.htm 比如用户编辑视频,该视频输入某个分类,编辑视频的表单如下: <form> <select name="category"> <option value="yule">娱乐</option> <option value="keji&

form表单中多个button按钮必须声明type类型

最近在做一个后台管理系统,发现了一个小bug: 问题描述:form表单中有多个button按钮(以下图为例),如果第一个button不写type属性,那么点击第一个button按钮会触发submit事件: 解决办法:给第一个按钮加上type属性. 原文地址:https://www.cnblogs.com/crf-Aaron/p/8336934.html

Form表单中的action路径问题,form表单action路径《jsp---&gt;Servlet路劲问题》这个和上一个《jsp---&gt;Servlet》文章有关

Form表单中的action路径问题,form表单action路径 热度5 评论 50 www.BkJia.Com  网友分享于:  2014-08-14 08:08:01     浏览数44525次 Form表单中的action路径问题,form表单action路径 今天刚接触web,在用jsp和servlet做一个简单的登陆的时候在Form表单action属性和method属性的一些问题: 我遇到的是Form表单提交到servelet处理时遇到的问题: (1)<form name="l

SpringMVC&lt;from:form&gt;表单标签和&lt;input&gt;表单标签简介 转http://blog.csdn.net/hp_yangpeng/article/details/51906654

SpringMVC<from:form>表单标签和<input>表单标签简介 在使用SpringMVC的时候我们可以使用spring封装的一系列表单标签,这些标签都可以访问到ModelMap中的内容.下面将对这些标签一一介绍. 在正式介绍SpringMVC的表单标签之前,我们需要先在JSP中声明使用的标签,具体做法是在JSP文件的顶部加入以下指令: Jsp代码 <%@taglib uri="http://www.springframework.org/tags/fo

如何在一个form表单中实现多个submit

As we all know,通过设置input type=“submit”,我们可以把form表单中的值通过post方式传递给action所指向的页面.下图中,我们可以把userName,userAge,userSex这三个值传递到xxx.jsp <form action="xxx.jsp" method="post">            <input type="text" name="userName&quo

Form表单中的action路径问题

今天刚接触web,在用jsp和servlet做一个简单的登陆的时候在Form表单action属性和method属性的一些问题: 我遇到的是Form表单提交到servelet处理时遇到的问题: (1)<form name="login" action="①?" method="②?"> //表单内容 username:<input type = "text" name = "username"

form表单中的button自动刷新页面问题

form表单中如果存在button的话,有可能会出现一个问题:点击button,触发了页面的自动刷新事件. 原因是因为<button>标签默认的类型是submit,即默认的button点击就会触发表单的提交事件. <button></button> <!-- 两者是相当的 --> <button type="sumbit"></button> 解决的办法有三个. 1.在<button>标签中添加属性ty

form表单中method的get和post区别

一.问题的提出   <form action="getPostServlet/getPost.do?param4=param4" method="get">     <input type="hidden" name="param1" value="param1">     <input type="hidden" name="param2&quo