• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

HTML Frames and forms

cliftonite

Diamond Member
Trying to get something outputted into a frame in HTML and having trouble with it.

<HTML>
<head>
<title>blahblah </title>
</head>


<FRAMESET rows="30%, 80%">
<frame name = "input" src= "/cgi-bin/test1.cgi">
</FRAMESET>

<h1>blahblah </h1>
<form action="/cgi-bin/test1.cgi"
TARGET = "input">
<p>MACID: <input type ="text" name="macid" MAXLENGTH="12"/></p>
<p><input type="submit" value="Search" /></p>
<p><input type="reset" value="Clear"/></P>
</form>

</HTML>



Shouldnt that work? Why does it just make a blank frame What I need to do is take in the macid and print out a debug log. The program works fine, but i wanted it to come out on the same page.
 
Back
Top