我有一个 PL/SQL 应用程序,它有一个注销按钮,单击注销按钮时会执行以下代码:
-- Open the HTTP header
owa_util.mime_header('text/html', FALSE, NULL);
-- Send a cookie to logout
owa_cookie.send('WDB_GATEWAY_LOGOUT', 'YES', path=>'/');
-- Close the HTTP header
owa_util.http_header_close;
-- Generate the page
htp.p('You have been logged off from the WEBSITE');
htp.p('<a href="http://myApp/pls" target="_blank">click here to log in</a>');
htp.p('<BR>bye');
它在使用 Internet Explorer 时运行良好,但是当我重新登录时使用 mozzila 时,我仍然以以前的用户身份登录。有没有其他人遇到过这种情况?我怎样才能使这项工作也适用于 Mozilla?
我从 oracle 文档页面获得了此代码: https ://docs.oracle.com/cd/B13789_01/server.101/b12303/secure.htm
提前致谢!