上一页 1 ··· 7 8 9 10 11 12 下一页
  2008年6月23日
摘要: C# 允许派生类中的方法与基类中的方法具有相同的名称,只要您非常明确应如何处理新方法。下面的示例演示 new 和 override 关键字的使用。 首先声明三个类:一个名为 Car 的基类以及从该基类派生的两个类 ConvertibleCar 和 Minivan。基类包含一个可将有关汽车的描述发送到控制台的方法 (DescribeCar)。派生类方法也包含一个名为 DescribeCar 的... 阅读全文
posted @ 2008-06-23 23:53 齐世昌 阅读(329) 评论(0) 推荐(0) 编辑
  2008年6月18日
摘要: 表示绑定的数据源 是服务器端代码块 阅读全文
posted @ 2008-06-18 23:03 齐世昌 阅读(384) 评论(0) 推荐(0) 编辑
  2008年6月17日
摘要: short s1 = 1; s1 = s1 + 1;有错,s1是short型,s1+1是int型,不能显式转化为short型。可修改为s1 =(short)(s1 + 1) 。 short s1 = 1; s1 += 1 正确。 阅读全文
posted @ 2008-06-17 01:27 齐世昌 阅读(1822) 评论(0) 推荐(0) 编辑
  2008年6月3日
摘要: AWStats is a free powerful and featureful server logfile analyzer that shows you all your Web/Mail/FTP statistics including visits, unique visitors, pages, hits, rush hours, os, browsers, search engi... 阅读全文
posted @ 2008-06-03 23:14 齐世昌 阅读(803) 评论(0) 推荐(0) 编辑
  2008年5月20日
摘要: A stored procedure is, as the name suggests, a query stored within the database that returns the results required to create the output you want. This approach hides the structure of the database and t... 阅读全文
posted @ 2008-05-20 21:32 齐世昌 阅读(242) 评论(0) 推荐(0) 编辑
摘要: Database design is both an art and a science,although the science part is generally the most relevant.There are rules that govern the process of design,including a series of steps called nomalization ... 阅读全文
posted @ 2008-05-20 14:18 齐世昌 阅读(216) 评论(0) 推荐(0) 编辑
  2008年5月6日
摘要: 由 John Resig 的 How JavaScript Timers Work 可以知道,现有的 JavaScript 引擎是单线程处理任务的。它把任务放到队列中,不会同步去执行,必须在完成一个任务后才开始另外一个任务。 让我们看看我之前的文章:JavaScript的9个陷阱及评点,在第 9 点 Focus Pocus 中提到的问题。原作者对这个认识有所偏差,其实不只是 IE 的问题,而是... 阅读全文
posted @ 2008-05-06 15:15 齐世昌 阅读(217) 评论(0) 推荐(0) 编辑
  2008年5月5日
摘要: This content is actually inside an HTML comment. It will only be displayed in IE. This content is actually only be displayed by IE 6 and later. This is normal HTML content,but IE will not display... 阅读全文
posted @ 2008-05-05 15:05 齐世昌 阅读(1202) 评论(0) 推荐(0) 编辑
  2008年4月11日
摘要: 在Web应用程序中不能通过右键项目-〉”添加“-〉”添加ASP.NET文件夹“方式添加 。因为Web应用程序中App_Code就不存在 。 不过可以通过手动的方式创建,添加一个文件夹命名为App_Code就可以了。这样子创建的和在网站中创建的App_Code的在外观上一样的。 先不要高兴,没有这么简单的。 你在App_Code创建类时,会发现没有智能提示。在页面后台引用时,会抱错,说不存在。 解决... 阅读全文
posted @ 2008-04-11 21:36 齐世昌 阅读(1438) 评论(0) 推荐(1) 编辑
摘要: 参见 http://support.microsoft.com/kb/910448/en-us 阅读全文
posted @ 2008-04-11 14:54 齐世昌 阅读(417) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 下一页