主题:[讨论]jsp中的application数据传递方法
int msgid=Integer.parseInt(request.getParameter("id"));
application.setAttrbute("num",new Integer(msgid));
在application中这样共享整型数据可以吗
在接收application共享整型数据时,要怎样使用
Object num=application.getAttribute("num");
sql= "update message set msgname='"+name+"',msgcontent='"+note+"' where msgid="+num;
在num后面要加什么:num.XXXXXX
application.setAttrbute("num",new Integer(msgid));
在application中这样共享整型数据可以吗
在接收application共享整型数据时,要怎样使用
Object num=application.getAttribute("num");
sql= "update message set msgname='"+name+"',msgcontent='"+note+"' where msgid="+num;
在num后面要加什么:num.XXXXXX