0

項目を SQL データベースに保存する方法を知る必要がありRadioButtonListます。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);
    }

columnaデータベースとのこの形式の通信を維持しながら、asp.net のラジオ ボタンからデータに追加する方法を知る必要があります。

ところでvarchar、私のデータベースには RadioButtonList データのテーブルがあります。

いくつかのチュートリアルを検索しましたが、昔ながらの 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>
4

1 に答える 1