If the user has yet to log in the below script should read as follows:
<%
if request.cookies("user")("firstname") = "" then
response.redirect "login.asp"
end if
%>
Create a cookie with the information from the database that check the login info and add this code to each page where the user needs to log in everytime
<%
if request.cookies("login") = "" then
response.redirect "another_page.asp"
end if
%>
This basically...
Create a page with the layout necessary making as many editable region as you need, save your page as a template (.dwt) then when you do file new from template the new page will maintain all editable regions for use...
Another options would be to create a table including an include file as...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.