• 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

Viewing source code in frames.

 
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am due to go for an interview to maintain a website and I am trying to view the source code to see what technologies are used on it, but the index page is all frames. Is there anyway to view the rest of the source code?
This is the source code below.
Thanks Douglas.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Deaf Connections</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="163,*" cols="*" frameborder="NO" border="0" framespacing="0">
<frame src="top1.html" name="top" scrolling="NO" noresize>
<frameset cols="200,100%" frameborder="NO" border="0" framespacing="0">
<frame src="left1-1.html" name="left">
<frame src="midh1.html" name="main">
</frameset>
</frameset>
<noframes>
<body>
</body>
</noframes>
</html>
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Right click on the frame and you can view the source code that way.
or type the src into the addy bar
 
reply
    Bookmark Topic Watch Topic
  • New Topic