ASP.NET连接SQL数据库的简单实例代码
程序员文章站
2024-02-29 10:08:04
复制代码 代码如下:using system;using system.collections;using system.componentmodel;using syst...
复制代码 代码如下:
using system;
using system.collections;
using system.componentmodel;
using system.data;
using system.drawing;
using system.web;
using system.web.sessionstate;
using system.web.ui;
using system.web.ui.webcontrols;
using system.web.ui.htmlcontrols;
using system.data.sqlclient;
namespace example01
{
///
/// webform1 的摘要说明。
///
public class webform1 : system.web.ui.page
{
private void page_load(object sender, system.eventargs e)
{
// 在此处放置用户代码以初始化页面
response.write("第一个连接数据库的实例");
sqlconnection myconnection = new sqlconnection("server=localhost;uid=sa;pwd=sa");
try
{
myconnection.open();//打开数据库链接
response.write("链接成功!");
}
catch
{
response.write("链接失败!");
}
}
#region web 窗体设计器生成的代码
override protected void oninit(eventargs e)
{
//
// codegen: 该调用是 asp.net web 窗体设计器所必需的。
//
initializecomponent();
base.oninit(e);
}
///
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
///
private void initializecomponent()
{
this.load = new system.eventhandler(this.page_load);
}
#endregion
}
}