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

how to display main page

 
Ranch Hand
Posts: 107
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Hi
I am developing page where Home.html I took username and password

after that MyHtml.html

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

view product |
|
view cart |

Log Out |

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


<FRAMESET ROWS="100%" noresize="noresize">
<FRAMESET COLS="25%,73%">
<FRAME SRC="LeftCol.html" NAME=options SCROLLING=NO>
<FRAME SRC="" NAME= Display SCROLLING=YES>
</FRAMESET>
</FRAMESET>


LeftCol -->

<form name = frmLeft>
<div style = "position:absolute;left:80;top:70">
View Product
</div>
<div style = "position:absolute;left:80;top:100">
View Cart
</div>
<div style = "position:absolute;left:80;top:130">
Log out
</div>
</form>


I want If I press logout It should display Home.html.

Now it is displaying in 1 column. I want it should be whole page.

I used target = _top but it opening new window.

Please help me to solve my problem

thanks

Vaishali


 
Vaishali Paramane
Ranch Hand
Posts: 107
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Thanks Now it working after restart my IDE
    Bookmark Topic Watch Topic
  • New Topic