|
You don't need two pages
Links <a href="/itempage.asp?itemno=nnnn">Item No nnn</a>
at top of page
<%
if request.querystring("itemno") <> "" then
ItemNo = Cint(request.querystring("itemno") )
else
ItemNo = 0
end if
%>
<body>
show your form here
<%
If itemNo > 0 then
'get your database record and display it
end if
%>
very simplified but shows the basics.
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
|