博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
12.22 repeater 添加
阅读量:5811 次
发布时间:2019-06-18

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

using System;

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

public partial class Insert : System.Web.UI.Page

{
protected void Page_Load(object sender, EventArgs e)
{
if (Session["uid"] != null)
{
if (!IsPostBack)
{

InfoDataContext context = new InfoDataContext();

DropDownList1.DataSource = context.Nation;

DropDownList1.DataTextField = "Name";
DropDownList1.DataValueField = "Code";

DropDownList1.DataBind();

}

 

}

else
{
Response.Redirect("denglu.aspx");

}

}

 

 

protected void Button1_Click(object sender, EventArgs e)
{
InfoDataContext context = new InfoDataContext();
string code = txtCode.Text;
string name = txtName.Text;
bool sex = rdnan.Checked;
string nation = DropDownList1.SelectedValue;
DateTime birthday = Convert.ToDateTime(txtBirthday.Text);

//造对象
Info data = new Info();
data.Code = code;
data.Name = name;
data.Sex = sex;
data.Nation = nation;
data.Birthday = birthday;

//提交数据改动

context.Info.InsertOnSubmit(data);

context.SubmitChanges();

//清空数据

Clear();
}

public void Clear()

{

txtCode.Text = "";

txtName.Text = "";
txtBirthday.Text = "";
DropDownList1.SelectedIndex = 0;
}
protected void Button2_Click(object sender, EventArgs e)
{
Response.Redirect("Main.aspx");
}
}

转载于:https://www.cnblogs.com/cf924823/p/5065727.html

你可能感兴趣的文章
实现跨交换机VLAN间的通信
查看>>
oracle import & export 操作相关脚本
查看>>
LVS集群的体系结构,构建强壮的体系结构里负载均衡层、真实服务器层、后端共享存储层都是相辅相成...
查看>>
DBCC PAGE
查看>>
ant 实现批量打包android应用
查看>>
域环境下如何保护重要资料文件的安全(二)---IRM&RMS(上)
查看>>
Visual Studio 2010 Ultimate敏捷功能特性(上)
查看>>
HP ADG双循环阵列
查看>>
数据结构---二分查找算法
查看>>
OpenStack Juno系列之网络节点搭建
查看>>
提高 SharePoint 页面访问速度之清理SharePoint Configuration Cache
查看>>
how to design a good api and why it matters
查看>>
mysql dba系统学习(20)mysql存储引擎MyISAM
查看>>
QC ALM 11 邮箱设置
查看>>
Ubuntu 下建立WiFi热点的方法
查看>>
SQL Server 2012入门T-SQL基础篇:(10)UPDATE语句
查看>>
Centos6.5 Qt4开发 Cannot find -lGL QApplication not file or dir
查看>>
无需精简,给C盘更多可用空间
查看>>
mysql主从同步配置(超详细)
查看>>
性能优化,永无止境---CPU篇
查看>>