protected void Page_Load(object sender, EventArgs e)
{
//给下单按钮增加一个"确认"对话框
//string xxx = "return confirm('您选择的" + Bill[0] + Bill[1] + ",确定要下单吗?')";
//ReferBill.Attributes.Add("onclick", xxx);
try
{
SqlConn = new SQLiteConnection("Data Source=E:/sqlite_dll/bill.db");
SqlConn.Open();
string login_usrname = Request.QueryString["username"];
current_user.Text = login_usrname;
//FoodListHistory.Text = FoodListHistory.Text + "当前用户为: " + login_usrname + Environment.NewLine; ;
}
catch (Exception)
{
this.Page.ClientScript.RegisterStartupScript(this.GetType(), "", "alert('无法连接数据库!请检查目标数据库文件!');", true);
}
}
测试测试能否贴代码
最新推荐文章于 2024-09-06 18:51:11 发布