加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
TestConnectDB.aspx.cs 622 Bytes
一键复制 编辑 原始数据 按行查看 历史
芊芊悠悠 提交于 2019-02-27 13:35 . V1.0
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 TestConnectDB : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
SqlConnection con = ConnectDB.Connect();
try
{
con.Open();
Label1.Text = "连接成功";
con.Close();
}
catch
{
Label1.Text = "连接失败";
}
}
protected void Button1_Click(object sender, EventArgs e)
{
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化