Sameer,

> www.site1.com.au shows one skin
> www.site2.com.au shows another

If you are showing a different skin based on domain (?)
Then you could either use an application scope variable
(if each site has its own application.cfm) or use the
Domain to determine which skin to display..

<cfswitch expression="#cgi.server_name#">
        <cfcase value="www.site1.com.au">do this to display skin
1</cfcase>
        <cfcase value="www.site2.com.au">do this to display skin
2</cfcase>
        <cfdefaultcase>the default to display skin 1</cfdefaultcase>
</cfswitch>

Hope this idea is of some use,
Adam

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/

Reply via email to