| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 565 人关注过本帖
标题:[求助] 用dropdownlist遇见个问题 向大家求教呀
只看楼主 加入收藏
编程初级大菜鸟
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2006-5-3
收藏
 问题点数:0 回复次数:1 
[求助] 用dropdownlist遇见个问题 向大家求教呀

当我运行的时候 比如在dropdownlist里选的是“大专以下”
它就出现: ‘大专以下’附近有语法错误。字符串‘)’之前有未闭和的引号。
我实在是找不出问题在哪 望各位赐教呀。

部分源码如下:
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using System.Configuration;
using System.Text;

private void Page_Load(object sender, System.EventArgs e)
{
// 在此处放置用户代码以初始化页面
}

private void Button1_Click(object sender, System.EventArgs e)
{
SqlConnection myConnection=new SqlConnection(DataBaseDB.ConnectionString);

string Aacademic;
if(academic.SelectedIndex==3)Aacademic="硕士以上(含硕士)";
else if(academic.SelectedIndex==2)Aacademic="本科";
else if(academic.SelectedIndex==1)Aacademic="专科";
else Aacademic="大专以下";string Ssex;
if(sex.SelectedIndex==2)Ssex="女";
else if(sex.SelectedIndex==1)Ssex="男";
else Ssex="不限";
string sql="insert into companyinfo(type,name,space,mainjob,worktime,wage,skill,phone,date,person,other,time,age,academic,sex) values('"+this.Type.Text+"','"+this.Name.Text+"','"+this.Space.Text+"','"+this.Mainjob.Text+"','"+this.Worktime.Text+"','"+this.Wage.Text+"','"+this.Skill.Text+"','"+this.Phone.Text+"','"+this.Date.Text+"','"+this.Person.Text+"','"+this.Other.Text+"','"+this.Time.Text+"','"+this.Age.Text+"'','"+Aacademic+"','"+Ssex+"')";
SqlCommand myCommand=new SqlCommand(sql,myConnection);
myConnection.Open();
myCommand.ExecuteNonQuery();
myConnection.Close();
try{myCommand.ExecuteNonQuery();}
catch{ }
finally
{
myCommand.Dispose();
myConnection.Close();
Response.Write("<script>alert(\"恭喜您,系统已经接受了您的信息!!!\")</script>");
}
this.Type.Text="";
this.Name.Text="";
this.Space.Text="";
this.Mainjob.Text="";
this.Worktime.Text="";
this.Wage.Text="";
this.Skill.Text="";
this.Phone.Text="";
this.Date.Text="";
this.Person.Text="";
this.Other.Text="";
this.Time.Text="";
this.Age.Text="";

}

搜索更多相关主题的帖子: dropdownlist 遇见 
2006-05-03 17:09
JonnyLiu
Rank: 1
等 级:新手上路
帖 子:62
专家分:0
注 册:2006-4-27
收藏
得分:0 
大哥这个问题应该去问啊
2006-05-04 10:37
快速回复:[求助] 用dropdownlist遇见个问题 向大家求教呀
数据加载中...
 
   



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

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