JSP application.removeAttribute()方法:移除指定属性

  • 内容
  • 评论
  • 相关

该方法用于移除 application 对象中的一个属性。

语法:

removeAttribute(String name)

参数说明:

  • name:要移除的属性的名称。

示例

将保存在 application 对象中的信息移除,关键代码如下:

<%
  application.setAttribute("user","lzw");
  application.removeAttribute("user");
%>

本文标题:JSP application.removeAttribute()方法:移除指定属性

本文地址:https://www.hosteonscn.com/6218.html

评论

0条评论

发表评论

邮箱地址不会被公开。 必填项已用*标注