1.page language="c#"//语言c#;2.AutoEventWireup="true"
/自动关联处理函数;3.CodeFile="Default.aspx.cs"//关联文件;4.Inherits="_Default"
//继承于_Default;3、4 表示aspx其实继承于cs...
分类:
Web程序 时间:
2014-04-30 21:08:46
阅读次数:
550
1.文件的基本操作1.1文件的打开或创建文件的打开或创建可以使用内置函数file(别名open)。函数声明如下:file(name[,mode[,buffering]])->fileobject或open(name[,mode[,buffering]])->fileobject其中,name表示被打...
分类:
编程语言 时间:
2014-04-30 19:48:22
阅读次数:
517
在做项目时遇到了这个异常,网上一查才知道 JSTL core库的版本问题。
当我们在web.xml中使用: ..... 时 我们在jsp才用方式引入。 而当我们的web.xml是 或 则需要: 在jsp中用方式引入。
若若版本不对应在运行时可能...
分类:
其他好文 时间:
2014-04-30 19:40:13
阅读次数:
443
本文转自:http://www.programmersedge.com/post/2013/03/05/ssis-execute-sql-task-mapping-parameters-and-result-sets.aspx#.U18_6PmSxBkA
very common scenario i...
分类:
移动开发 时间:
2014-04-30 18:34:53
阅读次数:
548
1. 存入图片 Connection con=db.conn; PreparedStatement
pstmt; //File file = upload; FileInputStream inputImage = new FileInputS...
分类:
编程语言 时间:
2014-04-30 17:27:01
阅读次数:
476
1 package com.test; 2 3 import java.io.File; 4
import java.io.FileInputStream; 5 import java.io.FileOutputStream; 6 import
java.io.InputStream...
分类:
编程语言 时间:
2014-04-29 11:35:47
阅读次数:
520
创建FileWriter对象时的细节
有可能会产生编译时异常IOException和运行时异常FileNotFoundException 使用构造方法FileWriter(String
fileName)或FileWriter(File file)创建FileWriter对象时 指定文件不存在 --...
分类:
其他好文 时间:
2014-04-29 11:27:46
阅读次数:
646
http://www.ttlsa.com/?s=sphinx
分类:
其他好文 时间:
2014-04-29 10:42:47
阅读次数:
229
1.有缓存:读取后放入缓存中下次可直接读取,适用于图片较少且频繁使用。[UIImage
imageNamed:@"文件名"];2.无缓存:用完就释放掉,参数传的是全路径,适用于图片较多的情况下。[UIImage alloc]
initWithContentsOfFile:@"文件全路径"];
分类:
其他好文 时间:
2014-04-29 10:41:47
阅读次数:
275
add the following text to .vimrc or .gvimrc: if
has("cscope") set csprg=/usr/bin/cscope set csto=0 set cst set nocsverb " add
any database in cur...
分类:
其他好文 时间:
2014-04-29 10:27:46
阅读次数:
398