• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
wjshan0808

Learn from yesterday, Live for today, For a better tomorrow.
 ————wjshan0808

博客园    首页    新随笔    联系   管理    订阅  订阅
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 20 下一页
2014年11月19日
查看linux [Fedora] 系统信息
摘要: 系统版本:$ head -n 1 /etc/issueFedora release 20 (Heisenbug)或者$ cat /etc/issue系统位数:$ getconf LONG_BIT64内核信息:$ cat /proc/version Linux version 3.11.10-301.... 阅读全文
posted @ 2014-11-19 22:04 wjshan0808 阅读(702) 评论(0) 推荐(0)
linux [Fedora] 下的 "飞秋/飞鸽传书"
摘要: 官方网址: http://www.msec.it/blog/?page_id=11http://software.opensuse.org/download.html?project=home:colomboem&package=dukto# cd /etc/yum.repos.d/# wget h... 阅读全文
posted @ 2014-11-19 21:15 wjshan0808 阅读(494) 评论(0) 推荐(0)
2014年8月29日
弹跳是不是自由落体?
摘要: // 174 ? 175 : high; callback(high); }, delay); } window.onload = function () { a = document.getEl... 阅读全文
posted @ 2014-08-29 00:34 wjshan0808 阅读(184) 评论(0) 推荐(0)
2014年6月9日
插件的简单原理
摘要: using IExtendServices;using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Reflection;using System.Text;using ... 阅读全文
posted @ 2014-06-09 19:14 wjshan0808 阅读(181) 评论(0) 推荐(0)
2014年5月26日
WebService的简单应用
摘要: 具体看项目源文件:包含: ip地址查询, QQ在线状态查询,和自定义的MD5 破解和加密(呵呵有形无势...) http://pan.baidu.com/s/1bn09WQjSOAP 1.1The following is a sample SOAP 1.1 request and... 阅读全文
posted @ 2014-05-26 20:44 wjshan0808 阅读(311) 评论(0) 推荐(0)
2014年5月7日
普通按钮的另一种提交方式(调用后台事件)
摘要: 后台: protected void ibtnRegedit_Click(object sender, ImageClickEventArgs e) { if (!Page.IsValid || !CheckVCode()) retu... 阅读全文
posted @ 2014-05-07 19:47 wjshan0808 阅读(355) 评论(0) 推荐(0)
2014年4月28日
ASPNET服务端控件练习(一个机试题)
摘要: 简单记录:模糊查询的select语句的拼写 public List GetWhereStudent(string name, string sub, string isG) { List lt = new List(); str... 阅读全文
posted @ 2014-04-28 22:54 wjshan0808 阅读(491) 评论(0) 推荐(0)
2014年4月22日
AJAX简单的数据增删改与分页应用
摘要: 运行截图: PageBar.js: 1 /* 2 * 说明: 3 * 整体思想,1.第一页时不显示:首页,上一页, 4 * 2.最后一页时不显示:下一页,尾页 5 * 3.中间有 5 页导航, 6 * 若:3.1.(总页数<5),就显示多少, 7 * 3.2.(总页数>5),点击页码值 <=3 背景 阅读全文
posted @ 2014-04-22 22:27 wjshan0808 阅读(331) 评论(0) 推荐(0)
2014年4月15日
new XMLHttpRequest()和页面关系
摘要: 1. 三个页面分别对应"自己“的异步对象(3个) //另外两个页面类似。 public void ProcessRequest(HttpContext context) { context.Response.ContentType = ... 阅读全文
posted @ 2014-04-15 01:40 wjshan0808 阅读(3588) 评论(0) 推荐(0)
2014年4月14日
省市联动初探AJAX操作数据
摘要: 主要学习代码:List.html 省: 市:List.ashx:using System;using System.Web;using System.Collections.Generic;//List//序列化命名空间using System.Web.Script.Se... 阅读全文
posted @ 2014-04-14 19:51 wjshan0808 阅读(247) 评论(0) 推荐(0)
WEB简单数据操作练习
摘要: 主要学习代码: Login.aspx: Login.aspx.cs List.aspx List.aspx.cs Modify.aspx.cs Edit.aspx Edit.aspx.cs Web.BAL Web.Model 项目文件:http://pan.baidu.com/s/1dDf5mlb 阅读全文
posted @ 2014-04-14 01:23 wjshan0808 阅读(520) 评论(0) 推荐(0)
2014年3月26日
using 名称空间指定一个别名
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using reflector = System.Reflection;namespace ConsoleApplication2{ class Program { static void Main(string[] args) { reflector::Assembly assembly = reflector.... 阅读全文
posted @ 2014-03-26 23:30 wjshan0808 阅读(218) 评论(0) 推荐(0)
ASP.NET的一般处理程序对图片文件的基本操作
摘要: 以一个小项目为例: 验证码: ashx文件: html调用: 上传文件: html文件: 下载文件: html: 相关项目文件:http://pan.baidu.com/s/1eQmopOm 阅读全文
posted @ 2014-03-26 02:37 wjshan0808 阅读(1494) 评论(0) 推荐(0)
2014年3月16日
ASP.NET的一般处理程序对数据的基本操作
摘要: TableList.ashx: DataList.html: Add.ashx: Delete.ashx: Modify.ashx: OperationModel.html: CommonHelper.cs: Web.config: 三层代码可以参考前几篇的文章。项目文件:http://pan.ba 阅读全文
posted @ 2014-03-16 01:14 wjshan0808 阅读(900) 评论(0) 推荐(0)
2014年3月9日
取数组的元素值和地址
摘要: // 数组的取值和地址.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include #include //操作符头文件using namespace std;int _tmain(int argc, _TCHAR* argv[]){#pragma region 一维 int arrOneDimension[]={1,2,3,4,5,6,7,8,9}; for (int i = 0; i < 9; i++) { //cout<<arrOneDi 阅读全文
posted @ 2014-03-09 20:03 wjshan0808 阅读(408) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 20 下一页
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3