Click here to Skip to main content
15,902,112 members
Home / Discussions / Web Development
   

Web Development

 
QuestionC# Web Service Starting Pin
Thirapong10-Feb-06 21:32
Thirapong10-Feb-06 21:32 
Questionasp, no exchange, activex, outlook Pin
tarantula310-Feb-06 21:08
tarantula310-Feb-06 21:08 
QuestionASP Module Loading / Framework Pin
__makaveli__10-Feb-06 5:30
__makaveli__10-Feb-06 5:30 
QuestionPurpose of session.LCID in asp Pin
idreesbadshah10-Feb-06 1:30
idreesbadshah10-Feb-06 1:30 
AnswerRe: Purpose of session.LCID in asp Pin
Guffa10-Feb-06 2:32
Guffa10-Feb-06 2:32 
QuestionASP File downloader Pin
Bongzino9-Feb-06 22:48
Bongzino9-Feb-06 22:48 
GeneralASP CSS file Pin
Bongzino9-Feb-06 22:18
Bongzino9-Feb-06 22:18 
AnswerRe: ASP CSS file Pin
Guffa9-Feb-06 22:50
Guffa9-Feb-06 22:50 
It doesn't work well at all. There are two possible scenarios:

1. The file is cached. This has the effect that the asp code is only run once, and any change you make will take days to appear for all users, as they are looking at the cached file.

2. The file is not cached. This has the effect that the browser will request the file every time, increasing the loading time and the server traffic.

In most cases the file is cached, even if you try to make the browser not to cache it.

Put the styles that you want to be dynamic in a style tag on the page instead of in the css file. This both gives you dynamic styles, and the advantage of css file caching.

Tip: You can have complementing specification for the same styles in the page and in the css file. Example:

In the css file:

body { background: #fff; color: #000; font-family: Verdana, Arial, Helvetica, sans-serif; }

In the page:

body { font-size 11px; }

-- modified at 4:51 Friday 10th February, 2006

And I almost forgot:

Some browsers (Opera if I recall correctly) doesn't even allow asp files to be used as css files.

---
b { font-weight: normal; }

GeneralRe: ASP CSS file Pin
Bongzino10-Feb-06 2:10
Bongzino10-Feb-06 2:10 
Questionhierarchical Data Grid in j2ee Pin
Krishnendra Nandi9-Feb-06 19:20
Krishnendra Nandi9-Feb-06 19:20 
QuestionPop Up Window Reopening Pin
Ashishhere9-Feb-06 18:59
Ashishhere9-Feb-06 18:59 
Questionmailform.cgi replacement Pin
Jon Sagara9-Feb-06 18:39
Jon Sagara9-Feb-06 18:39 
AnswerRe: mailform.cgi replacement Pin
perlmunger10-Feb-06 12:02
perlmunger10-Feb-06 12:02 
Questionasp in apache Pin
dlinks9-Feb-06 8:48
dlinks9-Feb-06 8:48 
AnswerRe: asp in apache Pin
Guffa9-Feb-06 10:11
Guffa9-Feb-06 10:11 
QuestionChange the process name w3wp.exe Pin
Gilad Kapelushnik9-Feb-06 5:02
Gilad Kapelushnik9-Feb-06 5:02 
QuestionDual monitors and full screen Pin
Spaz809-Feb-06 4:43
Spaz809-Feb-06 4:43 
QuestionASP tree like view Pin
wagae9-Feb-06 3:27
wagae9-Feb-06 3:27 
Questioncodes to call web services in asp Pin
praetorean8-Feb-06 22:54
praetorean8-Feb-06 22:54 
Questiondesign receiver to receive xml files Pin
jacktundra8-Feb-06 21:15
jacktundra8-Feb-06 21:15 
AnswerRe: design receiver to receive xml files Pin
perlmunger10-Feb-06 12:09
perlmunger10-Feb-06 12:09 
GeneralRe: design receiver to receive xml files Pin
jacktundra10-Feb-06 12:21
jacktundra10-Feb-06 12:21 
GeneralRe: design receiver to receive xml files Pin
perlmunger10-Feb-06 17:59
perlmunger10-Feb-06 17:59 
QuestionWeb programming Books Pin
jamest858-Feb-06 11:57
jamest858-Feb-06 11:57 
AnswerRe: Web programming Books Pin
Pete Madden9-Feb-06 16:30
Pete Madden9-Feb-06 16:30 

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.