上一页 1 2 3 4 5 6 7 8 9 10 ··· 22 下一页
摘要: Google Search实现其实通过传递查询关键字构建一个url,然后根据Http请求获取相关内容以json格式返回到客户端。关键是url的构建格式:http://www.google.cn/complete/search?hl=en&client=suggest&js=true&qu=" + Request.QueryString["qu"] 下面根据url创建http... 阅读全文
posted @ 2010-07-03 11:05 Blue Sky ...... 阅读(329) 评论(1) 推荐(0) 编辑
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--执行左移右移函数:var$get=function(id){return"string"==typeofid?document.getElementById(id):id;};varExtend=fu... 阅读全文
posted @ 2010-07-03 10:55 Blue Sky ...... 阅读(480) 评论(0) 推荐(0) 编辑
摘要: function StringBuilder(value) { this.strings = new Array(""); this.append(value); } // Appends the given value to the end of this instance. StringBuilder.prototype.append = function (value) { if (valu... 阅读全文
posted @ 2010-07-03 10:48 Blue Sky ...... 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--setInterval(fun,time)函数fun以间隔time循环执行clearInterval(timer)清除定时器setTimeout(fun,time)函数fun在time后执行一次下面实... 阅读全文
posted @ 2010-07-03 10:47 Blue Sky ...... 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 获取图片大小:var originImage = new Image();function GetImageWidth(oImage) { if (originImage.src != oImage.src) originImage.src = oImage.src; return originImage.width;}function GetImageHeight(oImage) { if (o... 阅读全文
posted @ 2010-07-03 10:39 Blue Sky ...... 阅读(367) 评论(0) 推荐(0) 编辑
摘要: Creating the SQL Membership Provider database on your computer running SQL Server在vs2008提供命令行下运行aspnet_regsql.exe 则会自动生成存储用户信息表 Membership Web.Config配置:Database链接字符串: <connectionStrings> <add... 阅读全文
posted @ 2010-06-26 14:48 Blue Sky ...... 阅读(359) 评论(0) 推荐(0) 编辑
摘要: 记录脚本在你的浏览器和客户端已经准备好记录后,做下面的操作:1. 当你第一次运行WAS时,你会看到一个Create new script的对话框(Figure 1),询问你以什么样的方式创建一个新的测试脚本。2.点Record 按钮 。如果之前你选择了Don't display at startup,Create new script将不会显示出来。你可以在Script菜单选择Record 然后 ... 阅读全文
posted @ 2010-05-29 19:40 Blue Sky ...... 阅读(452) 评论(0) 推荐(0) 编辑
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--目前企业面临的计算环境和过去有很大的变化,许多数据资源能够依靠网络来远程存取,而且越来越多的通讯依赖于公共网络公共网络(如Internet),而这些环境并不保证实体间的安全通信,数据在传输过程可能被其... 阅读全文
posted @ 2010-05-28 17:02 Blue Sky ...... 阅读(513) 评论(0) 推荐(1) 编辑
摘要: 一般有那面的几点在企业网站中需要特别的注意: 1、网站的title标题和内页的页面标题都重复使用一个:也就是说很多企业网站的标题没有好好的规划,所有的页面都使用同一个标题和关键词!这个是很不好的习惯,也不利于搜索引擎的搜索。 2、关键词累加:这个问题需要特别的注意,很多站长,把所有关于网站的产品,网站主题的关键次,累加在一起,只管数量的多少,不在意重复性。结果主要的关键词都排不上,弄个两头空,甚至连自己的品牌或公司名字都排不到前面。 3、描述定死:有些网站知道要加描述(meta里的description信息),但和关键词一样不知道怎么加。往往一加,每个页面都是这个描述,效果是适得其反的。描述就 阅读全文
posted @ 2010-05-22 13:59 Blue Sky ...... 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 最近在做项目时,运用了VS2008 中 Team Foundation Server 版本控制工具,在修改后本地文件不能编译,不能从服务器端下载 ,就想重新建立一个本地目录,从服务器端获取新的文件。弄了个吧小时才解决这个问题。From the File menu, click Source Control, and then click Workspaces.In Manage Workspace... 阅读全文
posted @ 2010-05-22 13:54 Blue Sky ...... 阅读(386) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 22 下一页