2012年5月8日

网上购物系统(Task004)——通用数据库访问函数

摘要: 源代码:13033480群共享一、try…catch…finally结构using System;using System.Data;using System.Data.SqlClient;using System.Configuration;using System.Collections.Generic;using WestGarden.Model;namespace WestGarden.Web{ public partial class Default1 : System.Web.UI.Page { protected void Page_Load(objec... 阅读全文

posted @ 2012-05-08 23:16 WestGarden 阅读(251) 评论(0) 推荐(0) 编辑

网上购物系统(Task003)——公共数据集Model

摘要: 源代码:13033480群共享一、把连接字符串放到Web.config文件中 <connectionStrings> <add name="NetShopConnString" connectionString="server=.\SQLEXPRESS;database=NetShop;integrated security=SSPI;" providerName="System.Data.SqlClient"/> </connectionStrings>二、添加类库Model,设置类库项目的程序集 阅读全文

posted @ 2012-05-08 18:14 WestGarden 阅读(293) 评论(0) 推荐(0) 编辑

1.2 最基本的数据库连接

摘要: 源代码:13033480群共享这个界面不是很漂亮,但是,如果我们今天就能够很简单地做到这一步,你会不会很激动??看下面的代码:using System; using System.Data; using System.Data.SqlClient; namespace WestGarden.Web { public partial class Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { str... 阅读全文

posted @ 2012-05-08 17:14 WestGarden 阅读(220) 评论(0) 推荐(0) 编辑

导航