divide long web page

L

LaiLakY

Hi all
I want to divide long HTML page (paging) into smaller pages.
I know how to do it if I use recordset but in my project, I dont need
to read from a Database, I'm reading a file system wich is a folder
and list all files insid it

Any idea Plaese
THANKS
 
E

Evertjan.

LaiLakY wrote on 30 jun 2007 in microsoft.public.inetserver.asp.general:
Hi all
I want to divide long HTML page (paging) into smaller pages.
I know how to do it if I use recordset but in my project, I dont need
to read from a Database,


try:

<html>
<head>
......
</head>
<body>
<%
if request.querystring("part")=1 then
%>
...............
<%
end if
if request.querystring("part")=2 then
%>
...............
<%
end if
if request.querystring("part")=3 then
%>
...............
<%
else ' part 4 is default
%>
...............
<%
end if
%>
</body>
I'm reading a file system wich is a folder
and list all files insid it

Don't we all?
Is this relevant to your Q?
 
L

LaiLakY

Evertjan.:> try:
<html>
<head>
.....
</head>
<body>
<%
if request.querystring("part")=1 then
%>
..............
<%
end if
if request.querystring("part")=2 then
%>
..............
<%
end if
if request.querystring("part")=3 then
%>
..............
<%
else ' part 4 is default
%>
..............
<%
end if
%>
</body>
</html>
Thanks Evertjan
Your Idea is great but I have loop and I want after Iisting each 'say
20 files' then the next will be in new page and so on
Don't we all?
Is this relevant to your Q?
Thanks, for this i'm doing well.
 
E

Evertjan.

LaiLakY wrote on 30 jun 2007 in microsoft.public.inetserver.asp.general:
I want to divide long HTML page (paging) into smaller pages.
I know how to do it if I use recordset but in my project, I dont need
to read from a Database, I'm reading a file system wich is a folder
and list all files insid it

[..]Thanks Evertjan
Your Idea is great but I have loop and I want after Iisting each 'say
20 files' then the next will be in new page and so on

So you want a [clickable] file listing using the filesystemobject
and know how to get the list of files in an array?

then do:

<%
' arr is filled by filesystemobject
' s is start position in arr

for i=s to s+20
%>
<a href='<%=arr(i)%>'><%=arr(i)%></a><br>
<%
next
%>
 
L

LaiLakY

THANK YOU SO MUCH
Evertjan

I used IF statment and it's work very nice

THANKS AGAIN

Kind Regards
LaiLakY
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top