摘要:
connstr="driver={SQL Server};server=(local);uid=sa;pwd=sa;database=Your database" 语法介绍: 1、driver={SQL Server};始终为这个形式,不变 2、server:可以是local、你计算机的IP、计算机的名称中的任意一个 3、uid:登陆SQL的用户名 4、pwd:登陆SQL的密码 5、database:要连接的数据库名称。然后再声明连接对象:set conn=Server.Createobject("adodb.connection")然后用Open方法打 阅读全文
摘要:
Private Sub PrintBarCode(ByVal strBarCode As String, Optional ByVal intXPos As Integer = 0, Optional ByVal intYPos As Integer = 0, Optional ByVal intPrintHeight As Integer = 10, Optional ByVal bolPrintText As Boolean = True) '注释: 参数说明: '注释: strBarCode - 要打印的条形码字符串 '注释: intXPos, intYPos - 阅读全文
摘要:
for(i=2;i<n/2;i++){if(n%i==0){ return 0;}return 1;}本文来源于http://code.niuc.org/thread-4430-1-1.html,转载请注明出处。 阅读全文
摘要:
本文通过一个简单的例子,向大家讲述ajax的使用方法。内附详细注释。一看便会。其乐无穷。现在,新建2个文件,一个是ajax.php,一个是ajax.html。并且将以下代码分别写到他们中去。ajax.php中的代码:<?php $a=intval($_POST['a']);//获取传递过来的a的值,保存在变量$a中 $b=intval($_POST['b']); echo $a+$b; //将结果输出。实际上就是返回给ajax对象了。?>ajax.html中的代码:<html><head><meta http-equiv 阅读全文
摘要:
首先要引用microsoft excel 11.0 object library然后将编写以下代码: Set objExcel = CreateObject("Excel.Application") objExcel.Workbooks.Add Set objSheet = objExcel.Workbooks(1).Worksheets(1)'指定工作表为sheet1 objExcel.Worksheets.Add objExcel.Workbooks(1).Worksheets(1).Name = "ssssssss"新建一个工作表,并设置其 阅读全文
摘要:
file_get_contents(url)超时处理,比较好的方式是怎么样的?$opts = array( 2.‘http'=>array( 3.‘method'=>”GET”, 4.‘timeout'=>60, 5.) 6.); 7.$context = stream_context_create($opts); 8.$html =file_get_contents('example.com', false, $context); 9.fpassthru($fp); 有没有比这个方式要好的?curl本文来源于http://code.n 阅读全文
摘要:
迅雷下载:thunder://QUFodHRwOi8vZGwwMi50b3BzYWdlLmNvbS9jbHViL2NvbXB1dGVyLyU1QiVFNSVBNCVBNyVFNSVBRSVCNiVFNyVCRCU5MSU1RFZpc3VhbC5DKysuNi5DTiU1Qnd3dy5Ub3BTYWdlLmNvbSU1RC56aXBaWg==QQ旋风下载:qqdl://aHR0cDovL2RsMDIudG9wc2FnZS5jb20vY2x1Yi9jb21wdXRlci8lNUIlRTUlQTQlQTclRTUlQUUlQjYlRTclQkQlOTElNURWaXN1YWwuQysrLjYuQ04 阅读全文
摘要:
这个CSS代码实现了让图片在DIV中水平居中,并且自动缩放至在CSS中指定的大小。CSS这样写:content img{max-width: 678px!important;height: auto!important;width:expression(this.width > 678 ? "678px" :true)!important;-webkit-max-width:678px; margin:0 auto;display:block;}如果图片宽度超过678px,则自动等比例缩放至678px,否则按实际大小显示。并且水平居中显示。你可以修改678px这个数字 阅读全文
摘要:
代码如下:<body><table width="200" border="1"><tr><td class="abc" id="postmessage_90403">中华人民共和国</td><td class="abc">中华人民共和国</td></tr></table></body></html><script type="text/javasc 阅读全文
摘要:
左右拖曳翻页效果js源代码<html><head><title>blog</title><meta http-equiv=content-type content="text/html; charset=gb2312"><style>body{border:0px;margin:0px;overflow:hidden;background-color:transparent;font-family:宋体;}.page{position:absolute;width:700px;border:1px so 阅读全文