[Rt-commit] [svn] r1187 - rtfm/trunk/html/RTFM/Article

alexmv at pallas.eruditorum.org alexmv at pallas.eruditorum.org
Thu Jul 8 12:08:41 EDT 2004


Author: alexmv
Date: Thu Jul  8 12:08:40 2004
New Revision: 1187

Modified:
   rtfm/trunk/html/RTFM/Article/Delete.html
Log:
 * Giving GET parameters as part of the form's action URL doesn't work
   on all browsers (for example, Mozilla) -- thus making the "no"
   button give an error.


Modified: rtfm/trunk/html/RTFM/Article/Delete.html
==============================================================================
--- rtfm/trunk/html/RTFM/Article/Delete.html	(original)
+++ rtfm/trunk/html/RTFM/Article/Delete.html	Thu Jul  8 12:08:40 2004
@@ -30,16 +30,17 @@
 <table>
 <tr>
 <td align="left">
-<form action="Display.html?id=<%$ArticleObj->Id%>" method="get" >
-<input type=submit value="<&|/l&>No</&>">
+<form action="Display.html" method="GET">
+<input type="hidden" name="id"     value="<%$ArticleObj->Id%>" />
+<input type="submit" value="<&|/l&>No</&>" />
 </form>
 
 </td>
 <td align="right">
-<form action="Delete.html" method="POST" >
-<INPUT TYPE=HIDDEN NAME=id VALUE="<%$ArticleObj->Id%>">
-<INPUT TYPE="HIDDEN" NAME="Delete" VALUE="yes">
-<input type=submit value="<&|/l&>Yes</&>">
+<form action="Delete.html" method="POST">
+<input type="hidden" name="id" value="<%$ArticleObj->Id%>" />
+<input type="hidden" name="Delete" value="yes" />
+<input type="submit" value="<&|/l&>Yes</&>" />
 </form>
 </td>
 


More information about the Rt-commit mailing list