• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Frame,Form action,Frameset

 
Greenhorn
Posts: 22
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear All,
I have doubt in frame,form action,frameset.My question is that how can i show the out put from one frame to another frame ie when I will press the button Ping ATMIP then the called jsp page "pingatmip.jsp" should be executed in another frame ie right side frame.
Secondly there is two button in left hand side frame.how can I adjust the code in index.jsp so that after pressing the button "Ping ROUTERIP" then the called jsp "pingrouterip.jsp" should be exicuted in right hand frame.
But When I enter the both the button then only pingatmip.jsp is called in left hand side of frame
Please suggest me.

See the following code,
1)
index.jsp

<HTML>
<center>
<FRAMESET BORDER=3 COLS="20%,*">
<FRAME NAME="F1" SRC="index1.jsp" SCROLLING="yes">
</FRAMESET>
</center>

</HTML>

2)index1.jsp

<HTML>
<HEAD>
<center><H1>Enter The Station ID<H1></center>
</HEAD>
<BODY bgcolor=pink>
<center>
<table border =1 cellpadding=0>
<form action="http://localhost:8100/pingatmip.jsp" >
<form action="http://localhost:8100/pingrouterip.jsp" >
<TR bgcolor=dddop45>
<TD><H5><CENTER><br>ATM-ID :</center></H4><input type="text" name ="a"></TD>
</TR><BR></table><br>
<INPUT TYPE="submit" value="Ping ATMIP" STYLE="COLOR:BLUE" align = centre>
<INPUT TYPE="submit" value="Ping ROUTERIP" STYLE="COLOR:BLUE" align = centre>
</form>
</center>
</BODY>
</head>
</HTML>


3)pingatmip.jsp
.
.
.
code

4)pingrouterip.jsp

.
.
code
.
.

-----------------------

Upendra

[ February 22, 2005: Message edited by: Bear Bibeault ]
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Moving to the HTML/Javascript forum since inter-frame stuff needs to happen at the client level.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic