Groups | Blog | Home
all groups > inetserver asp general > june 2007 >

inetserver asp general : divide long web page



LaiLakY
6/29/2007 11:36:38 PM
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
LaiLakY
6/29/2007 11:59:54 PM

Evertjan.:> try:
[quoted text, click to view]
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

[quoted text, click to view]
Thanks, for this i'm doing well.
Evertjan.
6/30/2007 12:00:00 AM
LaiLakY wrote on 30 jun 2007 in microsoft.public.inetserver.asp.general:

[quoted text, click to view]


[..]
[quoted text, click to view]

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
%>

--
Evertjan.
The Netherlands.
Evertjan.
6/30/2007 12:00:00 AM
LaiLakY wrote on 30 jun 2007 in microsoft.public.inetserver.asp.general:

[quoted text, click to view]


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>

[quoted text, click to view]

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

--
Evertjan.
The Netherlands.
LaiLakY
6/30/2007 6:56:09 AM
THANK YOU SO MUCH
Evertjan

I used IF statment and it's work very nice

THANKS AGAIN

Kind Regards
LaiLakY
AddThis Social Bookmark Button