本文介绍了我从数据源获得错误,请验证这一点的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;

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

    }
    SqlConnection con = new SqlConnection("Data Source=.\SQLEXPRESS;AttachDbFilename="C:\Users\SONY\Documents\Visual Studio 2010\WebSites\WebSite9\App_Data\Student.mdf";Integrated Security=True;User Instance=True");
        SqlCommand cmd;
    protected void Button1_Click(object sender, EventArgs e)
    {
        con.Open();
        cmd = new SqlCommand("insert into Student values('"+TextBox1 .Text +"','"+TextBox2 .Text +"',)", con);
        cmd.ExecuteNonQuery();


    }
}

推荐答案


这篇关于我从数据源获得错误,请验证这一点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 07:15