2013年1月24日

摘要: 1.新建一数据表,里面有字段id,将id设为为主键create table tb(id int,constraint pkid primary key (id))create table tb(id int primary key )2.新建一数据表,里面有字段id,将id设为主键且自动编号create table tb(id int identity(1,1),constraint pkid primary key (id))create table tb(id int identity(1,1) primary key )3.已经建好一数据表,里面有字段id,将id设为主键alter ta 阅读全文
posted @ 2013-01-24 16:00 柒夏ing 阅读(18485) 评论(2) 推荐(0) 编辑

2013年1月5日

摘要: /// <summary> /// 得到真实IP以及所在地详细信息(Porschev) /// </summary> /// <returns></returns> public string GetIpDetails() { //设置获取IP地址和国家源码的网址 string url = "http://www.ip138.com/ips8.asp"; string regStr = "(?<=<td\\s*align=\\\"center\\\">)[^<]*?(?=& 阅读全文
posted @ 2013-01-05 10:59 柒夏ing 阅读(4590) 评论(0) 推荐(0) 编辑

2012年12月27日

摘要: using System;using System.Collections.Generic;using System.Text;using System.Net;using System.IO;namespace ftponload{ class Program { static void Main(string[] args) { //上传文件的方法 onload("D://outPut.txt"); //下载文件的方法 fload(); } ... 阅读全文
posted @ 2012-12-27 17:15 柒夏ing 阅读(2682) 评论(0) 推荐(0) 编辑

2012年12月17日

摘要: 用JavaScript刷新上级页面和当前页面<script type="text/javascript"> //刷新上级页面 //window.parent.main.document.location.reload(); //刷新当前页面 document.location.reload();</script>每个frame元素或者iframe元素就是一个框架,这个框架是一个窗口,在这个窗口中加载一个html文档.使用下面的几种方法都可以引用frame或iframe元素:window.frames[index]windows.frames[&quo 阅读全文
posted @ 2012-12-17 11:38 柒夏ing 阅读(1481) 评论(0) 推荐(0) 编辑
 
摘要: 一、常用的ASP时间函数 1、now() 获取当前系统日期和时间,ASP输出格式:<%=now()%> 2、Year(now()) 获取年份, ASP输出格式:<%=Year(now())%> 3、Month(now()) 获取当前月份,ASP输出格式:<%=Month(now())%> 4、day(now()) 获取当天数,ASP输出格式:<%=day(now())%> 5、hour(now())获取小时数,ASP输出格式:<%=hour(now())%> 6、Minute(now()) 获取分钟数,ASP输出格式:<%=Mi 阅读全文
posted @ 2012-12-17 11:17 柒夏ing 阅读(2809) 评论(0) 推荐(0) 编辑

2012年12月7日

摘要: 获取页面Response.asp代码:document.getElementById('aja_cnts').value 阅读全文
posted @ 2012-12-07 10:06 柒夏ing 阅读(1680) 评论(0) 推荐(0) 编辑

2012年12月5日

摘要: Windows XP系統安裝IIS相信曾困扰過很多人,不是安裝過程出現錯誤,找不到文件,就是提示zClientm.exe出現問題,即使安裝成功了,也會提示MMC無法初始化管理單元,無法預覽頁面!經過多番查找資料和兩次安裝IIS6.0和IIS5.1,我的電腦終於成功安裝了IIS,而且運行無誤,和大家分享一下安裝過程,希望能讓更多的人少走彎路。 阅读全文
posted @ 2012-12-05 13:39 柒夏ing 阅读(1146) 评论(0) 推荐(0) 编辑
 
摘要: 事件描述 onactivate:当对象设置为活动元素时触发。 onafterupdate:当成功更新数据源对象中的关联对象后在数据绑定对象上触发。 onbeforeactivate:对象要被设置为当前元素前立即触发。 onbeforecut:当选中区从文档中删除之前在源对象触发。 阅读全文
posted @ 2012-12-05 12:45 柒夏ing 阅读(420) 评论(0) 推荐(0) 编辑