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?