rupda27
06-10-2003, 02:33 PM
FORMS question:
When a user expands or reduces their browser, making all the text larger or smaller, I've noticed that it breaks up my tables now that I have a form field in there. The form filed is nested in a table that has the width set, and yet the table still breaks, anyone knows how to avoid this??
Example:
http://www.studiopresence.com/clients/anonymous/
CGI question:
In the same proceeding page (link above), I also want to have users send emails to me, but I'm having trouble getting it to work. Here's my attempt:
<TD align="center" WIDTH=100 bgcolor="#EEEEEE">
<form action="mailto:limors@mindspring.com" method="post" enctype="text/plain" name="email" id="email">
<input name="email" type="text" id="email" size="13" maxlength="50">
</form>
</TD>
<TD> <IMG SRC="../images/fill.10.gif" WIDTH=7 HEIGHT=19 ALT=""></TD>
</TR>
<TR>
<TD COLSPAN=3> <IMG SRC="../images/fill.19.gif" WIDTH=113 HEIGHT=5 ALT=""></TD>
</TR>
<TR>
<TD> <IMG SRC="../images/fill.11.gif" WIDTH=6 HEIGHT=23 ALT=""></TD>
<TD align="right" WIDTH=100 bgcolor="#EEEEEE"><form action="" method="post" name="email" id="email">
<input type="submit" name="Submit" value="Submit">
</form> </TD>
Forgive me, I'm not very verse on the technical side, so I'm sure some of this code could be written better. I do know that my server has a CGI bin in it.
Lastly, after the user hits "send" I get this error:
Method Not Allowed
The requested method POST is not allowed for the URL /clients/anonymous/index.htm.
Thanks in advance!
Rupda27
When a user expands or reduces their browser, making all the text larger or smaller, I've noticed that it breaks up my tables now that I have a form field in there. The form filed is nested in a table that has the width set, and yet the table still breaks, anyone knows how to avoid this??
Example:
http://www.studiopresence.com/clients/anonymous/
CGI question:
In the same proceeding page (link above), I also want to have users send emails to me, but I'm having trouble getting it to work. Here's my attempt:
<TD align="center" WIDTH=100 bgcolor="#EEEEEE">
<form action="mailto:limors@mindspring.com" method="post" enctype="text/plain" name="email" id="email">
<input name="email" type="text" id="email" size="13" maxlength="50">
</form>
</TD>
<TD> <IMG SRC="../images/fill.10.gif" WIDTH=7 HEIGHT=19 ALT=""></TD>
</TR>
<TR>
<TD COLSPAN=3> <IMG SRC="../images/fill.19.gif" WIDTH=113 HEIGHT=5 ALT=""></TD>
</TR>
<TR>
<TD> <IMG SRC="../images/fill.11.gif" WIDTH=6 HEIGHT=23 ALT=""></TD>
<TD align="right" WIDTH=100 bgcolor="#EEEEEE"><form action="" method="post" name="email" id="email">
<input type="submit" name="Submit" value="Submit">
</form> </TD>
Forgive me, I'm not very verse on the technical side, so I'm sure some of this code could be written better. I do know that my server has a CGI bin in it.
Lastly, after the user hits "send" I get this error:
Method Not Allowed
The requested method POST is not allowed for the URL /clients/anonymous/index.htm.
Thanks in advance!
Rupda27