Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Hidden Input Item Causes Page Not Found Error

EEGJul 19 2012 — edited Jul 28 2012
Hello.

I'm using Apex 4.1.0 on Oracle 10.2.0.5 and mod_plsql (Oracle app server).

I created an application with two tabs.

On one of tabbed pages, in a PL/SQL Annonymous Block, I have the following code:
begin
  htp.p('
<!DOCTYPE html>
<html>
<head>
<title>AMO PROPOSAL CHECKLIST</title>
</head>
<body>
<h1>AMO PROPOSAL CHECKLIST</h1>
<form action="" method="post">
<input type="hidden" name="FS-1" value="1" />
text2<label for="C12" class="hideMeButHearMe">text2</label><input type="text" name="f02" size="20" maxlength="12" value="" name="TEXT-Q12" id="C12" />
My Question
</form>
</body>
</html>
');
end;
When I run this page, the HTML is rendered correctly.

However, if I then click on the other tab, I get the error: Page Not Found.

I narrowed down the problem to the inclusion of the hidden input item: <input type="hidden" name="FS-1" value="1" />

If I simply remove this hidden item, switching to another tab throws no error.

I ran this page using Firefox with Firebug. But doesn't help me figure out why this hidden item is throwing the error.

Does anyone know why this is happening?
This post has been answered by fac586 on Jul 27 2012
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 25 2012
Added on Jul 19 2012
13 comments
4,768 views