Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Button not showing up in Netscape?

Status
Not open for further replies.

usp004

ISP
Jul 10, 2000
46
0
0
US
Can someone tell me why the Button (<input type=button>) is not showing up in Netscape 4?

<HTML>
<HEAD>
<META NAME=&quot;GENERATOR&quot; Content=&quot;Microsoft Visual Studio 6.0&quot;>
<TITLE></TITLE>
</HEAD>
<BODY>
<font face=&quot;arial&quot; size=&quot;2&quot;><b><i>
A fund accounting interface for your district has not been established.<br><br>
Please contact your system administrator or eschoolmall.com (@ 1-877-9myschool) for more information.
</i></b></font><br><br>
<input type='button' value='Back' name='Back' onclick='javascript:history.back(1);'></input>
<br>
<a href=&quot;javascript:history.back(1)&quot;>Back</a>
<P>&nbsp;</P>
</BODY>
</HTML> [sig][/sig]
 
Hi usp004,

your problem is because you didn't include the <FORM> tag in your code..

try this..
<HTML>
<HEAD>
<META NAME=&quot;GENERATOR&quot; Content=&quot;Microsoft Visual Studio 6.0&quot;>
<TITLE></TITLE>
</HEAD>
<BODY>
<font face=&quot;arial&quot; size=&quot;2&quot;><b><i>
A fund accounting interface for your district has not been established.<br><br>
Please contact your system administrator or eschoolmall.com (@ 1-877-9myschool) for more information.
</i></b></font><br><br>
<form>
<input type='button' value='Back' name='Back' onclick='javascript:history.back(1);'></input>
</form>
<br>
<a href=&quot;javascript:history.back(1)&quot;>Back</a>
<P> </P>
</BODY>
</HTML> [sig]<p>Chiu Chan<br><a href=mailto:cchan@gefmus.com>cchan@gefmus.com</a><br><a href= America, Inc</a><br>[/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top