Print Page | Close Window

CSS style changer

Printed From: Web Wiz Forums
Category: General Discussion
Forum Name: Classic ASP Discussion
Forum Description: Discussion on Active Server Pages (Classic ASP).
URL: https://forums.webwiz.net/forum_posts.asp?TID=7053
Printed Date: 31 March 2026 at 4:32pm
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: CSS style changer
Posted By: wolfie
Subject: CSS style changer
Date Posted: 06 November 2003 at 1:31pm

Right, newbie ASP programmer here so bare with me.

I was wondering how to make a script that allows you to change the styles of a website and store it in a cookie file so that when you come back to the site, it's the same.
e.g. http://www.albinoblacksheep.com/ - http://www.albinoblacksheep.com/

I dunno if it's possible to do it in DHTML? ASP or DHTML is good though.

Thanks!



-------------
Wolfie--[ http://www.wolfweb.co.uk - WolfWeb.co.uk ]
PHP, .net--[ beginner ] ASP, VB, C, SQL--[ intermediate ] X/D/HTML, CSS, WML, XML--[



Replies:
Posted By: MorningZ
Date Posted: 06 November 2003 at 4:05pm

along the lines of:

<%
strStyleSheetLocation = Request.Cookies("style")
if strStyleSheetLocation = "" then strStyleSheetLocation = "default.css"
%>

<html>
<head>
<link rel="stylesheet" type="text/css" href="<%= strStyleSheetLocation %>">
</head>
...blah blah blah

 



-------------
Contribute to the working anarchy we fondly call the Internet


Posted By: wolfie
Date Posted: 08 November 2003 at 6:06am
How do I edit that so the user will be able to change it then?

-------------
Wolfie--[ http://www.wolfweb.co.uk - WolfWeb.co.uk ]
PHP, .net--[ beginner ] ASP, VB, C, SQL--[ intermediate ] X/D/HTML, CSS, WML, XML--[


Posted By: Mart
Date Posted: 08 November 2003 at 6:46am

Just set a cookie by using:

Response.Cookies("style") = "something.css"



Posted By: Semikolon
Date Posted: 08 November 2003 at 4:55pm
you can make a form that posts styledata to an aspfile that sets the cookie and redirects to a page within your web.



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.08 - https://www.webwizforums.com
Copyright ©2001-2026 Web Wiz Ltd. - https://www.webwiz.net