数据库字符串在Web.config出现异常

数据库字符串在Web.config出现错误
我要做的功能是现实登陆。然后跳转到新的页面。。
这是我的代码在DAL类

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.SqlClient;
using System.Configuration ;
using System.Data;


namespace DAL
{
    public class Class1DAL
    {
        public SqlDataReader show(string name)
        {
            string myConnectString = ConfigurationSettings.AppSettings["ConnectionString"];
            
            SqlConnection myConnection = new SqlConnection( );
            myConnection.Open();
            String sql = string.Format("select 编号 from 学生表 where 姓名='{0}'", name);
            SqlCommand cmd = new SqlCommand(sql, myConnection);
            return cmd.ExecuteReader();
 
        }
    }
}

然后在Default.aspx里面的代码

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using DAL;
using System.Data.SqlClient;
namespace WebApplication1
{
    public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }

        protected void Button1_Click(object sender, EventArgs e)
        {
            Class1DAL dal=new Class1DAL();
            SqlDataReader dr = dal.show(TextBox1.Text);
            if (dr.Read())
            {
                Response.Redirect("WebForm1.aspx");
            }
            else
            {
                Response.Write("用户名与密码不一致");
            }

        }
    }
}
现在出现数据库字符串在Web.config出现异常,现在要怎么修改啊,
------解决方案--------------------
 string myConnectString = ConfigurationSettings.AppSettings["ConnectionString"];
            
            SqlConnection myConnection = new SqlConnection(myConnectString );
------解决方案--------------------
 <appSettings>
       <add key="ConnectionString" value="Data Source=levev-PC;Initial Catalog=student;User ID=sa;password=sa;Integrated Security=False"/>
     </appSettings>



        public SqlDataReader show(string name)
        {
            string myConnectString = ConfigurationSettings.AppSettings["ConnectionString"];
            SqlConnection myConnection = new SqlConnection(myConnectString);
            myConnection.Open();
            String sql = string.Format("select StationID from StationPar where Area ='{0}'", name);
            SqlCommand cmd = new SqlCommand(sql, myConnection);           
            return cmd.ExecuteReader();            

        }