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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

free a section of my asp page

Status
Not open for further replies.

stonehead

Technical User
May 2, 2007
58
0
0
US
Hi all,

I need to free a top section of my asp page. I don't know if there's a way to do it. Any suggestion is appreciated.

Thank you
 
free a top section?? add a DIV?

if you have a page, and you're trying to slip something else in at the top, find the body tag, and right below it add your new stuff..

limited info, limited answer .. sorry

[thumbsup2]DreX
aKa - Robert
if all else fails, light it on fire and do the happy dance!
" I always think outside the 'box', because I'm never in the 'loop' " - DreX 2005
 
I'm with Drex, don't know what you want.

You can do this:

Code:
<%@ Language="VBScript" %>
<% Option Explicit %>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
   "[URL unfurl="true"]http://www.w3.org/TR/html4/strict.dtd">[/URL]

<html>

<head>
<title>A page</title>
</head>

<body>

<p>Some HTML</p>

<% some asp %> 

<p>Some HTML</p>

<% some asp %> 

</body>
</html>

if that is what you are asking.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top