初识: "> My JSP 'index.jsp' starting page --> username 密码: 通过HTTP表单中的參数设置JavaBean的属性值 "> My JSP 'index.jsp'...
分类:
编程语言 时间:
2014-06-15 23:38:39
阅读次数:
332
${item_index?if_exists+1}//获取循环下标值,默认是从0开始的. ${item.userName?if_exists}
分类:
其他好文 时间:
2014-06-15 20:54:59
阅读次数:
346
1 index unique scan 效率最高,主键或唯一索引2 index fast full scan 读的最快,可以并行访问索引,但输出不按顺序3 index full scan 有顺序的输出,不能并行读索引。4 index range scan 在给定的区间查询5 index s...
分类:
其他好文 时间:
2014-06-15 19:41:17
阅读次数:
169
问题: 模式对话框里的CheckedChanged事件不被触发:解决方法:一、先不直接showModalDialog出要的页面,而是要放一个中单页面window.showModalDialog("Print/Index.aspx?HEADOID=" + strOid + "&rnd=" + Math...
分类:
其他好文 时间:
2014-06-15 17:22:39
阅读次数:
123
1. 文件复制
bool copy (string $source , string $dest ) PHP 4, PHP 5)
header("content-type:text/html;charset=utf-8");
$source_path = "index.php";
$dest_path = "copy_content.php"...
分类:
Web程序 时间:
2014-06-15 14:32:14
阅读次数:
207
1、Android环境搭配:下载jdk下载Android ADT下载安装Android SDK,地址:http://developer.android.com/sdk/index.html#download创建AVD2、下载Android NDK:http://developer.android.c...
分类:
移动开发 时间:
2014-06-14 21:26:49
阅读次数:
356
水到家了#include #include #include using namespace std;struct Point{ int index, pos; Point(int index_ = 0, int pos_ = 0){ index = index_; ...
分类:
其他好文 时间:
2014-06-14 21:21:40
阅读次数:
281
附网址:http://qt-project.org/doc/qt-5/qtquickdialogs-index.html
Qt Quick Dialogs —— Qt Quick对话框
该模块自Qt 5.1推出。
Dialogs
ColorDialog —— 用来选择颜色的对话框
FileDialog —— 文件对话框
FontDialog —— 字体对话框
Mess...
分类:
其他好文 时间:
2014-06-14 13:07:54
阅读次数:
305
附网址:http://qt-project.org/doc/qt-5/qtquicklayouts-index.html
Qt Quick Layouts —— Qt Quick布局
Qt Quick Layouts是用来对用户界面内元素进行布局的一组QML类型。与positioners不同的是,Layouts会改变这些组件的尺寸。这使得它很适合用在尺寸可变的用户界面上。由于layou...
分类:
其他好文 时间:
2014-06-14 11:52:02
阅读次数:
341
1、继承Thread类,实现run方法
class TestThread
{
public static void main(String[] args)
{
Thread1 t1=new Thread1();
t1.start();
int index=0;
while(true)
{
if(index++==500)
{
t1.stopThread...
分类:
编程语言 时间:
2014-06-14 10:25:58
阅读次数:
317