- 浏览: 222374 次
- 性别:
- 来自: 沈阳
最新评论
-
youjianbo_han_87:
直接在国际化配置里配置就可以,不用重写。
struts2 文件上传自定义信息提示 -
来利强:
很好啊,取 时、分 时好乱啊
oracle extract -
younglibin:
这些东西 在 那个jar中,那个文件能查的到?
struts2 下载配置contentType属性 -
uule:
木看懂!木看懂!
struts2 文件上传自定义信息提示 -
happyxing:
问题相同,我也纠结
oracle动态表名
文章列表
http://www.diybl.com/course/3_program/java/javajs/20100124/193955.html
<action name="delete" method="delete" class="org.apache.struts2.showcase.action.EmployeeAction" > <result name="error">/empmanager/editEmployee.jsp</result> <result type="redirect">edit-${currentEmployee.em ...
<script type="text/javascript" id="kao"></script>
<input value=try type=button onclick="javascript:document.getElementById('kao').src='a.js'">
function runJSfunction(strFunctionName) { eval(strFunctionName+ "() "); }
function callBack(functionName) { if(typeof(functionName)== 'string ') eval(functionName); else functionName(); }
function func1(name) {
name = 33;
alert(name);
}
func1();//输出33
function fun1() {
this.name = 33;
}
function fun2(name) {
fun1.call(this,name);
alert(name);
}
fun2("Jack");//输出"Jack"
functi ...
jstl1.1版本由2个必要包构成:standard-1.1.jar和JSTL1.1.jar;而jstl1.2版本只有一个必要包JSTL1.2.jar。(一开始在替换的过程中想当然的用JSTL1.1.jar换JSTL1.2.jar,然后遗漏了standard-1.1.jar,耽搁了不少时间。) 经测试,tomcat6.0支持JSTL1.2版本, ...
http://www.blogjava.net/joessy/articles/1398.html
select * from(select a.*,rownum as rn from (select t.city_code as city_code,t2.city_name as city_name, t.dept_id as dept_id,t.dept_name as dept_name, t.dept_parent_id as dept_parent_id,t1.dept_name as dept_parent_namefrom bb_recommend_ ...
c:forEach
http://hi.baidu.com/persimmon/blog/item/3496aa18ca689b0735fa4191.html
<c:set></c:set>
http://baike.baidu.com/view/1002416.html
package dao.separapage;
import java.sql.Connection;import java.sql.DriverManager;import java.sql.ResultSet;import java.sql.SQLException;import java.sql.Statement;import java.util.ArrayList;import java.util.List;
import bean.separapage.Department;
public class SeparaDAO { // 建立连接对象
public static ...
办法一: 用sc.exe这个Windows命令 开始——运行——cmd.exe,然后输入sc就可以看到了。使用办法很简单: sc delete "服务名" (如果服务名中间有空格,就需要前后加引号) 如针对上面的: sc delete KSD2Service
方法二:直接进行注册表编辑(不推荐) 打开注册表编辑器,找到下面的键值: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services 一般服务会以相同的名字在这里显示一个主健,直接删除相关的键值便可。
三 ...
一、helloWord1 编写JAVA程序,也是在SQL/PLUS中写,并执行.
create or replace and compile java source named hello as public class Hello { static public String Message(String name) { return " Hello, " + name; } } /
2 发布JAVA程序
create or replace function ...
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<script type="text/javascript"> function createAjax(){ /* Create a new XMLHttpRequest object to talk to the Web server */ var xmlHttp = false; /*@cc_on @*/ /*@if (@_jscript_version >= 5) try { xmlHttp = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { ...
//获取选中的option的value
obj1.value=obj2.options[obj2.selectedIndex].value;
//option个数
deptPId.options.length