为了测试mysql的索引,要向数据库先插入上万条数据,然后再测试。手动插入太麻烦,写了一段代码。先上代码:package action;import
java.sql.Connection;import java.sql.DriverManager;import java.sql.ResultSet...
分类:
数据库 时间:
2014-05-21 21:20:16
阅读次数:
374
通过Cookie实现"记住我"的功能
1.登陆页面如下:
每个字段对应的属性name如下表:
用户帐号
name
登陆密码
password
验证码
checkNum
记住我
rememberMe
2.Action中的处理如下:
在用户第一次登陆后,进行Cookie进行处理
登陆处理:
/**登陆*/
...
分类:
其他好文 时间:
2014-05-21 16:41:08
阅读次数:
223
Piggy-Bank
Problem Description
Before ACM can do anything, a budget must be prepared and the necessary financial support obtained. The main income for this action comes from Irreversibly Bound M...
分类:
其他好文 时间:
2014-05-21 10:17:35
阅读次数:
289
一. 首先在xml添加ViewPager控件
我们希望每个viewpager显示一张图片
新建一个pager_item.xml的文件
代码如下
二.分析
一个ViewPager需要设置一个适配器,这个适配器可以继承FragmentStatePagerAdapter,
适配器同样需要设置数据,这个为适配器添...
分类:
移动开发 时间:
2014-05-21 09:54:09
阅读次数:
254
描述list layout item有上倒下依次显示的代码实现形式
LayoutAnimation2.java
/*
* Copyright (C) 2007 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may no...
分类:
其他好文 时间:
2014-05-21 09:02:15
阅读次数:
250
介绍list item倒序显示
LayoutAnimation3.java
/*
* Copyright (C) 2007 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file e...
分类:
其他好文 时间:
2014-05-21 08:25:44
阅读次数:
278
(1) 读取页面元素的onclick属性值
页面代码:
链接
程序代码:
IHTMLElement *item;// 已经找到该元素
想取出item身上onclick属性的值:alert('ok');
IHTMLElement *item;
CComQIPtr spElem(item);
VARIANT var;
spElem->get_onclick(&var);
CComQIPtr...
分类:
其他好文 时间:
2014-05-21 06:52:51
阅读次数:
225
带Render的方法返回值是void,在方法内部进行输出;不带Render的返回值类型为MvcHtmlString,是一个字符串。Partial和RenderPartial:直接加载视图文件内容;Action和RenderAction:重新执行一次Controller→Model→View的顺序,然...
分类:
Web程序 时间:
2014-05-21 05:54:25
阅读次数:
325
原文转自:http://hi.baidu.com/qiou2719/item/b9eed949130ff50ec0161331C++常见错误大全0.XXXX"isnotaclassornamespace"错误最诡异的错误,提示意思很明显,说你写的名字既不是一个类也不是一个命名空间,虽然我C++水平不...
分类:
编程语言 时间:
2014-05-21 04:58:51
阅读次数:
498
#include#include#includetypedef int Item;typedef
struct node* PNode;typedef struct node{ Item data; PNode next;}Node;typedef
struct{ PNode fr...
分类:
其他好文 时间:
2014-05-21 04:20:54
阅读次数:
219