-5

如何将个人资料帐户保存到数据库中。?

我在数据库中保存帐户的功能是 ff:

名字: 姓氏: 地址: 城市: 国家: 年龄: 性别: 状态: 国籍: 职业: 电子邮件地址: 密码:

  Save Button

注意:国家 - 我使用国家作为列出所有国家的下拉列表。所以用户只需选择
他/她拥有的国家。性别 - 也是一个下拉列表。用户必须选择值仅限男性或女性状态 - 也是一个下拉列表。用户选择值仅限单身、已婚、丧偶和分居。

任何人都可以使用 asp.net 和 c# 给我这个代码..感谢您的关注。我非常感谢您的努力..它对我有很大帮助..

这是我的代码。请检查我的代码..有一个运行时错误..

受保护的无效Button1_Click(对象发送者,EventArgs e){

string conn = @"Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Database.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True"; SqlConnection 连接 = 新的 SqlConnection(conn);

    string First = TextBox1.Text.Replace("'", "''");
    string Last = TextBox2.Text.Replace("'", "''");
    string Address = TextBox3.Text.Replace("'", "''");
    string City = TextBox4.Text.Replace("'", "''");
    string Country =DropDownList1;
    string Age = TextBox5.Text.Replace("'", "''");
    string Sex = DropDownList2;
    string Status = DropDownList3;
    string Nationality = TextBox6.Text.Replace("'", "''");
    string Occupation = TextBox7.Text.Replace("'", "''");
    string Email = TextBox8.Text.Replace("'", "''");
    string Pass = TextBox9.Text.Replace("'", "''");

    connection.Open();
    string sql = "INSERT INTO [ProfileTbl]([FirstName],[LastName],[Address],[City],[Country],[Age],[Sex],[Status],[Nationality],[Occupation],[EmailAddress],[Password]) Values('" + First + "','" + Last + "','" + Address + "','" + City + "','" + Country + "','" + Age + "','"+ Sex +"','"+ Status +"','"+ Nationality +"','"+ Occupation +"','"+ Email +"','"+ Pass+"')";
    SqlCommand cmd = new SqlCommand(sql, connection);
    cmd.CommandType = CommandType.Text;

    cmd.ExecuteNonQuery();
    connection.Close();

    TextBox1.Text = "";
    TextBox2.Text = "";
    TextBox3.Text = "";
    TextBox4.Text = "";
    TextBox5.Text = "";
    TextBox6.Text = "";
    TextBox7.Text = "";
    TextBox8.Text = "";
    TextBox9.Text = "";
    DropDownList1 = "";
    DropDownList2 = "";
    DropDownList3 = "";
    Response.Redirect("~/Default4.aspx");

}
4

1 回答 1

0

错误 31 无法将类型“System.Web.UI.WebControls.DropDownList”隐式转换为“字符串”错误 34 无法将类型“字符串”隐式转换为“System.Web.UI.WebControls.DropDownList”

正如我在评论中所说的那样。您不能使用这样的下拉列表。
DropDownList 具有用于访问当前选定值的属性

string selectedItemValue = dropDownListInstance.SelectedValue;

或者可能:

string selectedItemValue = dropDownListInstance.SelectedItem.Text;
于 2013-04-18T20:44:44.630 回答