上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 103 下一页
摘要: $("input[name=check_all]").click(function () { $(":checkbox[name=download_filename]:visible").attr("checked", $(this).attr("checked")) }) 阅读全文
posted @ 2013-05-24 14:46 y0umer 阅读(98) 评论(0) 推荐(0) 编辑
摘要: sString.Split(",")错误需要改为单引号sString.Split(',') 阅读全文
posted @ 2013-05-23 16:52 y0umer 阅读(404) 评论(0) 推荐(0) 编辑
摘要: 在引用里填加System.Configuration然后可以用 System.Configuration.ConfigurationManager.AppSettings[Key]去根据key读config里的配置值.比如在web,.config的节点里有: 那么:string x=S... 阅读全文
posted @ 2013-05-17 13:51 y0umer 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 作用:创建并返回一个文本数据流并应用各种选项,可用于fopen(),file_get_contents()等过程的超时设置、代理服务器、请求方式、头信息设置的特殊过程。函数原型:resource stream_context_create ([ array $options [, array $params ]] )fopen例子:<?php $opts = array( 'http-->array( 'method'=>"GET", 'header'=>"Accept-language: en\r\ 阅读全文
posted @ 2013-05-09 00:38 y0umer 阅读(1148) 评论(0) 推荐(0) 编辑
摘要: js标签只有onload\onunload\onbeforeunload事件,而没有onclose事件。不管页面是关闭还是刷新都会执行onunload事件。如何捕捉到页面关闭呢? 页面加载时只执行onload 页面关闭时只执行onunload 页面刷新时先执行onbeforeunload,然后onu... 阅读全文
posted @ 2013-05-07 18:06 y0umer 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 类代码:usingSystem;usingSystem.Data;usingSystem.Configuration;usingSystem.Web;usingSystem.Web.Security;usingSystem.Web.UI;usingSystem.Web.UI.WebControls;... 阅读全文
posted @ 2013-05-04 20:47 y0umer 阅读(408) 评论(0) 推荐(0) 编辑
摘要: 1.在ASP.NET中专用属性:获取服务器电脑名:Page.Server.ManchineName获取用户信息:Page.User获取客户端电脑名:Page.Request.UserHostName获取客户端电脑IP:Page.Request.UserHostAddress2.在网络编程中的通用方法... 阅读全文
posted @ 2013-05-04 20:36 y0umer 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 背景知识首先了解一些相关的概念: 数组元素:数组包含的值; 数组长度:数组可以包含的元素的个数; 维度数:数组的维度总数; 下限:数组指定的维度的起始索引。多维数组每个维可以有不同的下限。 运行时有两种不同的数组实现--SZ数组和普通数组。SZ数组是以0为下限的一维数组;普通数组指多维的或者下限不为... 阅读全文
posted @ 2013-05-04 11:51 y0umer 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 原网站迁移到win8 iis8 中 登陆界面的图片显示不出来需要开启匿名身份验证 且 设置为应用程序池标识 阅读全文
posted @ 2013-05-03 18:25 y0umer 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 1.单个主键using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.U... 阅读全文
posted @ 2013-05-03 13:16 y0umer 阅读(259) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 103 下一页