• 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

Problem with accessing url from frameset

 
Ranch Hand
Posts: 31
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
We are having problem while loading a url through the src attribute of the frame tag in the frameset. The script is as follows

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<FRAMESET ROWS="0,*" COLS="," border=0>
<FRAME SRC="" NAME="frame1">
<FRAME SRC="http://localhost:7001/SingleSignOnWeb/validateUser.jsp?appname=webstat" NAME="frame2">
</FRAMESET>
</HTML>

The following script gives a "Page not found" exception.

But when the url http://localhost:7001/SingleSignOnWeb/validateUser.jsp?appname=webstat is hit directly, it works fine.

Please Help

Thanks in Advance
Jaydeep
 
reply
    Bookmark Topic Watch Topic
  • New Topic