如何存储到DB RadioButtonList中

时间:2013-10-13 08:01:26

标签: c# asp.net sql sql-server linq

我需要知道如何将RadioButtonList项存储到我的SQL数据库中,已经为TextBox提供了这个项目:

public class Botones
{
    public void SaveCVInfo2(string varOne,string varTwo, string  varThree)
{
    using (ConexionGeneralDataContext db = new ConexionGeneralDataContext())
    {
        Usuario_Web columna = new Usuario_Web();
        //Add new values to each fields
        columna.Nombre = varOne;
        columna.Apellido = varTwo;
        columna.Em_solicitado = varThree;
        //and the rest where the textboxes would have been


        //Insert the new Customer object
        db.Usuario_Web.InsertOnSubmit(columna);
        //Sumbit changes to the database
        db.SubmitChanges();
     }

}
}

然后像这样引用它们:

protected void Button1_Click(object sender, EventArgs e)
    {
        Botones botones = new Botones();
        botones.SaveCVInfo2(nombre.Text, Apellidos.Text, EmpleoS.Text);
    }

我需要知道一种方法来添加asp.net中Radio Buttons的columna数据,同时保持这种与db的通信格式。

顺便说一下,我的数据库中的RadioButtonList数据有varchar个表。

我搜索了一些教程,但只找到了一些老式的ADO连接示例,我在这里使用Linq to SQL。

这是我在aspx页面中使用的RadioButtonList:

<asp:RadioButtonList ID="RadioButtonList6" RepeatColumns = "2" RepeatDirection="Vertical" RepeatLayout="Table"  runat="server">
<asp:ListItem ValidationGroup="Curriculum" style="margin-right:12px; margin-top:-10px" >Si</asp:ListItem>
<asp:ListItem ValidationGroup="Curriculum" >No</asp:ListItem>
</asp:RadioButtonList>

1 个答案:

答案 0 :(得分:0)

好吧,我这样解决了。

在我班上:

using System.Xml.Linq;
using System.IO;
using System.Text.RegularExpressions;
using System.Net.Mail;

namespace Grupo_Zulcon
{
public partial class EnvianosTuCurriculum : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }




    protected void Button1_Click(object sender, EventArgs e)
    {
        Botones botones = new Botones();
        botones.SaveCVInfo2(nombre.Text, Apellidos.Text, EmpleoS.Text, DireccionPersonal.Text, RadioButtonList6.SelectedItem.Text);
    }

}
}

在aspx.cs代码隐藏文件中:

protected void Button1_Click(object sender, EventArgs e)
    {
        Botones botones = new Botones();
        botones.SaveCVInfo2(nombre.Text, Apellidos.Text, EmpleoS.Text, DireccionPersonal.Text, RadioButtonList6.SelectedItem.Text);
    }

对于任何可能需要它的人,thx。