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

Posted 西科之巅、不可能

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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");
            }
          

 

以上是关于form表单中隐藏类型input的使用的主要内容,如果未能解决你的问题,请参考以下文章

form表单自动提交

form中input是类型有哪些?

表单学习心得

form表单中的input有哪些类型

form表单提交注意事项

form表单中input输入框的用法总结