摘要:
一、Date对象每天一对象,今天来看看Date对象,相对于时间大家一定很熟悉,应为以前在网站中很多地方都会遇到这样的时间特效。温故而知新,今天我们来回忆一下Date对象。我们首先来看看他的定义:1 dateObj = new Date()2 dateObj = new Date(dateVal)3 dateObj = new Date(year, month, date[, hours[, min... 阅读全文
摘要:
String对象是不可改变的。每次使用System.String类中的方法之一时,都要在内存中创建一个新的字符串对象,这就需要为该新对象分配新的空间。在需要对字符串执行重复修改的情况下,与创建新的String对象相关的系统开销可能会非常昂贵。如果要修改字符串而不创建新的对象,则可以使用System.Text.StringBuilder类。例如,当在一个循环中将许多字符串连接在一起时,使用Strin... 阅读全文
摘要:
getAttribute:取得属性;setAttribute:设置属性;代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01//EN""http://www.w3.or... 阅读全文
摘要:
Js的substring和C#的Substring的作用都是从一个字符串中截取出一个子字符串,但它们的使用方法却有很大的不同,下边我们来比较看看:Js的substring语法: 程序代码String.substring(start, end)说明:返回一个从start开始到end(不包含end)的子字符串。示例: 程序代码var str="abcdefgh";document.write(str.... 阅读全文
摘要:
目前在做项目的时候碰到的一个小问题,就是当要按照日期查询的时候,在数据库里查询必须是2008-09-06形式的,可是用户在输入的时候经常习惯输入2008-9-6(至少我就经常这样子输入,呵呵!) 上网搜索了好一会,解决方法如下: 可以利用.NET中格式化字符串的方法转换!代码如下: [代码] 阅读全文
摘要:
代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--<scriptlanguage="javascript">vari=5;<!--functionclock(){//document.title="本窗口将在"+i+"秒后自动关闭!... 阅读全文
摘要:
现在要用到,上网找了下,得如下方法,亲测成功! 代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--<scripttype="text/javascript">varstr1="2009-2-608:00:00";varstr2="200... 阅读全文
摘要:
开始以为会很麻烦,需要什么读二进制流写二进制流的,结果自己试了一下,还真简单。。直接一个saveAs就行了。。。 下面是HTML代码: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--<formid="form2"action="Handle... 阅读全文
摘要:
代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--SqlConnectionconn=newSqlConnection("server=xk\\xk;uid=sa;pwd=112233;database=test");SqlDataAdapterda... 阅读全文
摘要:
代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--//现代流行的"程序员"privatestaticboolIsOddFirst(intn){while(true){switch(n){case1:returntrue;case2:returnfal... 阅读全文