./当前目录/网站主目录../上层目录~/网站虚拟目录如果当前的网站目录为E:\wwwroot应用程序虚拟目录为E:\wwwroot\company浏览的页面路径为E:\wwwroot\company\news\show.asp在show.asp页面中使用Server.MapPath("./")返回...
分类:
移动开发 时间:
2014-04-30 19:34:51
阅读次数:
400
1 public String SentenceGerneration(String
pattern, ArrayList candSlotList, ArrayList argList){2 ArrayList candSentenceList
= new ArrayList();3 ...
分类:
其他好文 时间:
2014-04-30 18:48:43
阅读次数:
433
代码如下:JRadioButton useCache=new
JRadioButton("Use cache");// 初始化单选框useCache.setFont(new
Font("Arial",Font.PLAIN,16));// 设置字体JRadioButton noUseCache=new...
分类:
其他好文 时间:
2014-04-30 18:36:19
阅读次数:
504
$sql = "select * from student
";获取全部数据isset()判断$myaql_connect连接数据库$myaql_close结束连接数据库include(""."")连接页面mysql_query()向与指定的连接标识符关联的服务器中的当前活动数据库发送一条查询mys...
分类:
其他好文 时间:
2014-04-30 18:09:17
阅读次数:
396
1. 存入图片 Connection con=db.conn; PreparedStatement
pstmt; //File file = upload; FileInputStream inputImage = new FileInputS...
分类:
编程语言 时间:
2014-04-30 17:27:01
阅读次数:
476
scott用户成功连接数据库的具体方法: 1.grant connect, resource to
scott;2.grant create session to scott; 3.cmd4.sqlplus
scott/tigerOracle的安全1.用户管理用户至少需要会话的权利,否则连接也不成....
分类:
数据库 时间:
2014-04-30 16:49:05
阅读次数:
1754
private void txtName_KeyDown(object sender,
KeyEventArgs e) { Regex rg = new Regex("^[\u4e00-\u9fa5\b]$"); //\b是退格键 ...
分类:
Web程序 时间:
2014-04-30 16:16:38
阅读次数:
398
一、文本编辑框字符数限制问题方法一:在 xml
文件中设置文本编辑框属性作字符数限制如:android:maxLength="10" 即限制最大输入字符个数为10方法二:在代码中使用InputFilter
进行过滤//editText.setFilters(new InputFilter[]{new...
分类:
移动开发 时间:
2014-04-30 14:42:43
阅读次数:
446
void mobile_KeyUp(object sender, KeyEventArgs e) {
Regex rg = new Regex("^[0-9]{1,11}$"); Regex rg1 = new Regex("\b"); ...
分类:
Web程序 时间:
2014-04-30 13:32:53
阅读次数:
409
一、创建1、 jQuery
plugin(function($){$.fn.MyPlugin=function(){ //js代码}})(jQuery)
为了与页面上其他代码友好相处,将plugin定义在一个闭包里,MyPlugin是plugin的名字。调用方式:$(‘选择器’).MyPlugin(...
分类:
Web程序 时间:
2014-04-30 13:23:36
阅读次数:
535