20151221:Web复习:添加

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Insert.aspx.cs" Inherits="Insert" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
     <style type="text/css">
                * {
                    margin: 0px auto;
                    padding: 0px;
                }
     </style>
</head>
<body>
    <form id="form1" runat="server">
    <div id="aa" style="width:400px">
        <h1>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</h1>
        <h1>&nbsp;</h1>
        <h1>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;添加数据</h1>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        <p>
            &nbsp;</p>
        <p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            <asp:Label ID="Label1" runat="server" Text="代号:"></asp:Label>
            <asp:TextBox ID="txtCode" runat="server"></asp:TextBox>
            &nbsp;</p>
        <p>
            &nbsp;</p>
        <p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            <asp:Label ID="Label2" runat="server" Text="姓名:"></asp:Label>
            <asp:TextBox ID="txtName" runat="server"></asp:TextBox>
&nbsp;
        </p>
        <p>
            &nbsp;</p>
        <p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            <asp:Label ID="Label3" runat="server" Text="性别:"></asp:Label>
            <asp:RadioButton ID="rdnan" runat="server" Text="男" Checked="True" GroupName="sex" />
&nbsp;&nbsp;
            <asp:RadioButton ID="rdnv" runat="server" Text="女" GroupName="sex" />
        </p>
        <p>
            &nbsp;</p>
        <p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            <asp:Label ID="Label4" runat="server" Text="民族:"></asp:Label>
            <asp:DropDownList ID="drNation" runat="server">
            </asp:DropDownList>
        </p>
        <p>
            &nbsp;</p>
        <p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            <asp:Label ID="Label5" runat="server" Text="生日:"></asp:Label>
            <asp:TextBox ID="txtBirthday" runat="server"></asp:TextBox>
            &nbsp;</p>
        <p>
            &nbsp;</p>
        <p>
            &nbsp;</p>
        <p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="确定" />
&nbsp;&nbsp;&nbsp;
            <asp:Button ID="Button2" runat="server" OnClick="Button2_Click" Text="返回" />
            &nbsp;</p>
        <p>&nbsp;</p>

    </div>
    </form>
</body>
</html>
后台C#代码:

public partial class Insert : System.Web.UI.Page
{
    private TextDataContext context = new TextDataContext();
    protected void Page_Load(object sender, EventArgs e)
    {
        if(Session["uid"] != null)
        {
            if (!IsPostBack)
            {
                //给民族下拉列表绑定数据
                drNation.DataSource = context.Nation;
                drNation.DataTextField = "Name";
                drNation.DataValueField = "Code";
                drNation.DataBind();
            }
        }
        else
        {
            Response.Redirect("Denglu.aspx");
        }
    }
    protected void Button1_Click(object sender, EventArgs e)
    {
        Info data = new Info();//造对象
        //赋值
        data.Code = txtCode.Text;
        data.Name = txtName.Text;
        data.Sex = rdnan.Checked;
        data.Nation = drNation.SelectedValue;
        data.Birthday = Convert.ToDateTime(txtBirthday.Text);
        //添加到数据库
        context.Info.InsertOnSubmit(data);
        context.SubmitChanges();//提交
        Clear();
    }
    public void Clear()
    {
        //清空
        txtCode.Text = "";
        txtName.Text = "";
        rdnan.Checked= true;
        drNation.SelectedIndex = 0;
        txtBirthday.Text = "";
    }
    protected void Button2_Click(object sender, EventArgs e)
    {
        Response.Redirect("Main.aspx");
    }
}

时间: 2024-11-07 10:12:26

20151221:Web复习:添加的相关文章

当重装eclipse后,给现有web项目添加tomcat的构建路径

在eclipse"首选项"-"service environment"中配置好tomcat后,给现有web项目添加构建路径: 1.选中一个web项目右键选中"构建路径"-"配置构建路径" 2.选中右边"add library" 3.选择"service runtime"然后点击"下一步" 4.选择正确版本点击"完成"就可以了.

为Azure Web Site 添加ADFS验证支持之二 在代码里使用ADFS

下面我们来创建一个MVC 5.0的ASP.Net程序,并且将它部署到Azure Web Site上 通过Visual Studio 2015创建Web Project 在选择ASP.net模板的地方,更改验证方式   在选择验证方式时选择"Work And School Accounts",在文本框中填入 1.你公司的ADFS的Metadata的地址,这个地址可以找ADFS的管理员要到,通常如以下形式: https://{youradfs.yourcompany.com}/federa

JSP--TOMCAT-MYSQL web页面添加

addStudent.jsp如下<%@ page language="java" import="java.util.*" pageEncoding="UTF-8" contentType="text/html;charset=gb2312" %> <% String path = request.getContextPath(); String basePath = request.getScheme()+

为新定义的Web服务器添加应用Web模块并测试集群

为新定义的Web服务器添加应用Web模块并测试集群 1.选择要部署的Web应用,点击 2.选择管理模块 3.选择应用,和要部署的Web服务器,选好后,点击应用. 4.点击保存设置 新应用web应用模块部署到web服务器后,需要重新为web服务器plugins插件生成新的插件配置文件.并传播或拷贝到HTTP   Server  所在机器及其对应的目录中.让HTTP Server插件重新加载更改的配置信息.为新部署的应用生成请求路由信息,从而能请求到正确的服务器成员和Web应用模块,操作如下 生成插

为IIS Host ASP.NET Web Api添加Owin Middleware

将OWIN App部署在IIS上 要想将Owin App部署在IIS上,只添加Package:Microsoft.OWIN.Host.SystemWeb包即可.它提供了所有Owin配置,Middleware注册等方面的Api.我们需要做的其实和SelfHost差不多. 我们依然需要实现Startup类,但是不是通过WebApp来启动了.我们需要通过将Startup类打上[assembly: OwinStartup(typeof(Startup))]来定义这是OWIN的Startup类,当应用运行

SharePoint开发中如何使用Visual Studio给你的Web Part添加图标

SharePoint开发中如何使用Visual Studio给你的Web Part添加图标 直接进入正题.以Hello World为例. 1. 以管理员身份打开VS,新建空白SharePoint项目.点击确定.部署为场解决方案. 2. 右击项目添加新项--Web部件,命名HelloWorldWebPart. 3. 编辑代码: 在部署之前,这里我要给Web部件增加一个图标.每个Web部件都有两个图标:一个在Web部件库标识Web部件,一个在页面上标识Web部件.使用一个图标是简单的戏法,可以增强你

maven 如何给web项目添加jar包依赖

maven 如何给web项目添加jar包依赖 CreateTime--2018年4月19日19:06:21 Author:Marydon 开发工具:eclipse 1.打开pom.xml文件-->切换到pom.xml视图--> 2.在build标签上,创建dependencies标签,jar包的引入都放到该标签内: 3.查看项目都引用了哪些jar包:src/main/webapp/WEB-INF/lib,然后将下面的jar包一个一个的从maven资源库中http://mvnrepository

web项目添加easyui组件报错

创建web项目添加easyui组件到webRoot下后整个easyui组件报错 出现x的原因是eclipse检查了压缩版的jquery.min.js,而压缩版的语法格式很紧凑,eclipse反应不过来报错 可以右键easyui---->myeclipse---->exclude from validation  忽略报错就可以了,不影响组件的使用 原文地址:https://www.cnblogs.com/naidi/p/10477801.html

20151221:Web复习:主界面

前台HTML代码: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Main.aspx.cs" Inherits="_Main" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server