上一页 1 ··· 7 8 9 10 11 12 下一页
  2008年8月29日
摘要: 加上这个样式就可以了 cursor:hand; 阅读全文
posted @ 2008-08-29 11:23 自己 阅读(190) 评论(0) 推荐(0) 编辑
  2008年8月22日
摘要: 从IE4开始IE的object model才增加了document.all[],来看看document.all[]的Description: Array of all HTML tags in the document.Collection of all elements contained by the object. 也就是说document.all[]是文档中所有标签组成的一个数组变量... 阅读全文
posted @ 2008-08-22 10:21 自己 阅读(303) 评论(0) 推荐(0) 编辑
  2008年8月20日
摘要: 已存在的表 A 3 A 5 A 6 B 1 B 2 B 3 我想要结果是 A 3,5,6 B 1,2,3 create function dbo.f_str(@col1 varchar(100)) returns varchar(100) as begin declare @s varchar(100) set @s ='' select @s=@s+', '... 阅读全文
posted @ 2008-08-20 10:25 自己 阅读(309) 评论(0) 推荐(0) 编辑
  2008年8月16日
摘要: 使用QueryString 使用QuerySting在页面间传递值已经是一种很老的机制了,这种方法的主要优点是实现起来非常简单,然而它的缺点是传递的值是会显示在浏览器的地址栏上的(不安全),同时又不能传递对象,但是在传递的值少而安全性要求不高的情况下,这个方法还是一个不错的方案。使用这种方法的步骤如下: 1,使用控件创建web表单(form) 2,创建可以返回表单的按钮和链接按钮 3,在按... 阅读全文
posted @ 2008-08-16 11:01 自己 阅读(276) 评论(0) 推荐(0) 编辑
  2008年8月7日
摘要: 当我们开发完项目后发布网站时,会生成一个PrecompiledApp.config文件, PrecompiledApp.config 文件主要用于跟踪应用程序的部署方式,以及 ASP.NET 是否需要在请求时编译任何文件 然而当我再次打开项目时会报一个已预编译此应用程序的错误,这时我们只要将项目根目录下的PrecompiledApp.config文件删除,重新打开该项目即可. 阅读全文
posted @ 2008-08-07 14:02 自己 阅读(1300) 评论(0) 推荐(0) 编辑
  2008年7月17日
摘要: 5、操作类代理 using System; using System.Collections.Generic; using System.Text; using Factory; using Model; using ServerDAL; namespace BLL { public class UsersBLL { public static UserDAL u ... 阅读全文
posted @ 2008-07-17 12:25 自己 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 4、工厂类 using System; using System.Collections.Generic; using System.Text; using System.Reflection; namespace Factory { public class DtatAccess { public static object CreateDAL(string DA... 阅读全文
posted @ 2008-07-17 12:24 自己 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 3、数据操作类 using System; using System.Collections.Generic; using System.Text; using System.Data; using System.Data.Sql; using System.Data.SqlClient; using Model; namespace ServerDAL { public class Us... 阅读全文
posted @ 2008-07-17 12:22 自己 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 2、数据库帮助类 using System; using System.Collections.Generic; using System.Text; using System.Data; using System.Data.SqlClient; using System.Collections; using System.Configuration; namespace SQLServerDAL... 阅读全文
posted @ 2008-07-17 12:21 自己 阅读(374) 评论(0) 推荐(0) 编辑
摘要: 1、建立model using System; using System.Collections.Generic; using System.Text; namespace Model { public class Users { private int id; private string name; private string... 阅读全文
posted @ 2008-07-17 12:19 自己 阅读(372) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 下一页