Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Frames and ASP

Status
Not open for further replies.

dubgirl

Programmer
Dec 15, 2003
2
IE
Has anyone got an explanation as to why I cant use simple asp code (response.write "test") on the same page as frames?
I have the following code

<frameset rows=&quot;100&quot;>
<frame name=&quot;login&quot; src=&quot;</frameset>
<%
response.write request(&quot;inday&quot;)
%>

If i put the frame code first, it does that and ignores the ASP, if i put the ASP first, it does that and ignores the frame..
Ive searched online for information on this and there doesnt seem to be anything out there.
 
What exactly are you trying to do. Frameset defines the layout for your frames, it does not define the content. The frameset file gives information on how many frames you use, their sizes and position, their names and their source files. If you want to add content to your frames write to the source files of individual frames. If you want to provide information for browsers that do not see frames, try with the <noframes> tag:
Code:
<noframes>
 <body>
  <% response.write request(&quot;inday&quot;) %>
 </body>
</noframes>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top