扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
作者:冷枫 来源:CSDN 2007年9月23日
关键字: 冷枫
在本页阅读全文(共2页)
数据浏览
对TextBox进行简单绑定
private void Page_Load(object sender, System.EventArgs e)
{
if(!IsPostBack)
{
Session["RecordPos"] = 0;
}
sqlDataAdapter1.Fill(dsStudent1.tbStudentinfo);
this.DataBind();
}
private void btnPrev_Click(object sender, System.EventArgs e)
{
int RecordPos = (int) Session["RecordPos"];
if (RecordPos > 0)
{
RecordPos--;
}
Session["RecordPos"] = RecordPos;
this.DataBind();
}
private void btnNext_Click(object sender, System.EventArgs e)
{
int RecordPos = (int) Session["RecordPos"];
RecordPos++;
if (RecordPos >= dsStudent1.tbStudentinfo.Rows.Count)
{
RecordPos=0;
}
Session["RecordPos"] = RecordPos;
this.DataBind();
}
private void tbID_DataBinding(object sender, System.EventArgs e)
{
int RecordPos = (int) Session["RecordPos"];
tbID.Text = dsStudent1.tbStudentinfo.Rows[RecordPos]["StudentID"].ToString();
}
private void tbName_DataBinding(object sender, System.EventArgs e)
{
int RecordPos = (int) Session["RecordPos"];
tbName.Text = dsStudent1.tbStudentinfo.Rows[RecordPos]["StudentName"].ToString();
}
private void tbScore_DataBinding(object sender, System.EventArgs e)
{
int RecordPos = (int) Session["RecordPos"];
tbScore.Text = dsStudent1.tbStudentinfo.Rows[RecordPos]["Score"].ToString();
}
简单连接的例子
简单绑定一个Label
<%@ Import Namespace="System.Drawing" %> 调入一个命名空间
private void Page_Load(object sender, System.EventArgs e)
{
if(!IsPostBack)
{
ArrayList ar = new ArrayList();
ar.Add("Red");
ar.Add("Blue");
ar.Add("Green");
ar.Add("Orange");
ddlColor.DataSource = ar;
}
this.DataBind();
}
private void btnAdd_Click(object sender, System.EventArgs e)
{
string strSql = "insert into tbUserInfo values('"+tbName.Text+"','"+tbPass.Text+"',"+"'"+trblSex.SelectedItem.Text+"'"+",";
strSql += " '"+cdDate.SelectedDate.ToString()+"','"+tbZhiWei.Text+"','"+tbNotes.Text+"')";
ExcuteSql(strSql);
}
private void ExcuteSql(string strSql)
{
try
{
SqlConnection con = new SqlConnection();
con.ConnectionString = System.Configuration.ConfigurationSettings.AppSettings["DSN"];
con.Open();
//添加纪录...
SqlCommand com = new SqlCommand(strSql,con);
com.ExecuteNonQuery();
con.Close();
Response.Write("<script language='javascript'>alert('插入成功!')</script>");
}
catch(Exception ee)
{
Response.Write("发生错误:"+ee.Message);
}
}
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者