| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 488 人关注过本帖
标题:数据库字符出错~
只看楼主 加入收藏
zhangtingwei
Rank: 1
等 级:新手上路
帖 子:76
专家分:0
注 册:2005-11-11
收藏
 问题点数:0 回复次数:1 
数据库字符出错~

private void Page_Load(object sender, System.EventArgs e)
{
string username,pwd1,password,userandname,sox,email,datetime;
// 在此处放置用户代码以初始化页面
}

#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}

/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.Button1.Click += new System.EventHandler(this.Button1_Click);
this.CustomValidator1.ServerValidate += new System.Web.UI.WebControls.ServerValidateEventHandler(this.CustomValidator1_ServerValidate);
this.Button2.Click += new System.EventHandler(this.Button2_Click);
this.Button3.Click += new System.EventHandler(this.Button3_Click);
this.Load += new System.EventHandler(this.Page_Load);

}
#endregion

private void Button1_Click(object sender, System.EventArgs e)
{
if(this.RadioButton1.Checked)
{
this.Panel1.Visible=false;
this.Panel2.Visible=true;
}
}

private void Button2_Click(object sender, System.EventArgs e)
{
if(this.IsValid)
{
this.Panel2.Visible=false;
this.Panel3.Visible=true;
}
}

private void CustomValidator1_ServerValidate(object source, System.Web.UI.WebControls.ServerValidateEventArgs args)
{
string username=args.Value;
if(DB.judge(username))
{
args.IsValid=false;
}
else
{
args.IsValid=true;
}
}

private void Button3_Click(object sender, System.EventArgs e)
{

userneme=username.Text.Trim();
pwd1=pwd1.Text.Trim();
password=password.Text.Trim();
userandname=userandname.Text.Trim();
if(sox.Checked==true)
{
sox="男";
}
else
{
sox="女";
email=email.Text.Trim();
datetime=datetime.Text.Trim();
SqlConnection con=DB.createCon();
con.Open();
SqlCommand cdm=new SqlCommand("insert into login(username,password,password2,name,sox,email,datetime) values ("'+username+'","'+pwd1+'","'+password+'","'+userandname+'","'+sox+'","'+email+'","'+datetime+'")",con); 这个出错了..~

搜索更多相关主题的帖子: 数据库 字符 
2006-02-20 21:15
f3260247
Rank: 1
等 级:新手上路
帖 子:99
专家分:0
注 册:2005-11-25
收藏
得分:0 
‘“++”’

2006-02-21 15:44
快速回复:数据库字符出错~
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023937 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved