Click here to Skip to main content
15,920,602 members
Home / Discussions / Web Development
   

Web Development

 
GeneralHTML Table Pin
cberam10-Aug-05 23:39
cberam10-Aug-05 23:39 
GeneralRe: HTML Table Pin
fakefur11-Aug-05 13:53
fakefur11-Aug-05 13:53 
GeneralProblem with CSS Pin
iamalik10-Aug-05 20:46
professionaliamalik10-Aug-05 20:46 
GeneralRe: Problem with CSS Pin
Guffa11-Aug-05 0:51
Guffa11-Aug-05 0:51 
Questionurl syntax and firefox? Pin
zoid ! 10-Aug-05 10:05
zoid ! 10-Aug-05 10:05 
GeneralChange window attribut from a URL Pin
Spaz8010-Aug-05 3:45
Spaz8010-Aug-05 3:45 
GeneralRe: Change window attribut from a URL Pin
Spaz8010-Aug-05 3:50
Spaz8010-Aug-05 3:50 
GeneralRe: Change window attribut from a URL Pin
JKroschel10-Aug-05 4:23
JKroschel10-Aug-05 4:23 
I don't know if you mean pop-ups or just the next page. If you are looking to change a pop up, take a look at chapter seven of http://www.javascriptworld.com/scripts/index.html.
If you want to change the appearance of the next page depending on what you click on, you could do that on the back end with ASP or something like that. The script would then generate custom CSS based on what the link asked for. For example:
/page.asp?layout=1
vs.
/page.asp?layout=2

In your asp code, you would have something like:

<%
layout=Request.QueryString("layout")
If layout = 1 then
%>
<style>
(first style sheet)
</style>
<%
Else
%>
<style>
(second style sheet)
</style>
<%
End If
%>
GeneralRe: Change window attribut from a URL Pin
Spaz8010-Aug-05 4:33
Spaz8010-Aug-05 4:33 
GeneralRe: Change window attribut from a URL Pin
JKroschel10-Aug-05 4:51
JKroschel10-Aug-05 4:51 
Generalasp.net - password fields Pin
wpcolleen8-Aug-05 23:08
wpcolleen8-Aug-05 23:08 
GeneralRe: asp.net - password fields Pin
Guffa9-Aug-05 5:28
Guffa9-Aug-05 5:28 
GeneralSending Messages with MNC and MCC setting Pin
v.k.s8-Aug-05 21:19
v.k.s8-Aug-05 21:19 
Generalcss question Pin
matthias s.8-Aug-05 5:50
matthias s.8-Aug-05 5:50 
GeneralRe: css question Pin
Guffa8-Aug-05 8:03
Guffa8-Aug-05 8:03 
GeneralRe: css question Pin
WoutL8-Aug-05 21:38
WoutL8-Aug-05 21:38 
GeneralRe: css question Pin
matthias s.9-Aug-05 2:40
matthias s.9-Aug-05 2:40 
Generalasp panel Pin
monageasmear8-Aug-05 4:20
monageasmear8-Aug-05 4:20 
GeneralTo Get the Index in a table Pin
cberam8-Aug-05 1:32
cberam8-Aug-05 1:32 
GeneralDrop Down List Pin
Goodway8-Aug-05 1:11
Goodway8-Aug-05 1:11 
GeneralRe: Drop Down List Pin
Guffa8-Aug-05 2:16
Guffa8-Aug-05 2:16 
GeneralRe: Drop Down List Pin
Goodway8-Aug-05 20:32
Goodway8-Aug-05 20:32 
GeneralRe: Drop Down List Pin
Guffa8-Aug-05 22:28
Guffa8-Aug-05 22:28 
GeneralRe: Drop Down List Pin
Goodway9-Aug-05 20:56
Goodway9-Aug-05 20:56 
GeneralRe: Drop Down List Pin
Guffa9-Aug-05 22:52
Guffa9-Aug-05 22:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.