Hi
Like many others, I do not want browsers to cache certain pages. I have
added all the usual stuff like
<%
Response.Expires = 15
Response.ExpiresAbsolute = Now() - 2
Response.AddHeader "pragma","no-cache"
Response.AddHeader "cachecontrol","private"
Response.AddHeader "Cache-Control", "...
more >>
I've been fooling with this stuff for awhile and I still have problems with
quotes, double quotes, etc. I have no programming or database background. It
seems that every tutorial or every book I buy "assumes" that I know when and
how these are used.
Can someone please recommend a book, a Web sit...
more >>
I hope one of you guys can find a solution to my problem.
We are trying to capture the IP addresses of outside users
accessing our website. ServerVariables("Remote_Addr")
isn't working. Instead it returns the internal address of
our server. We have an ISA server and firewalls. I'm not
sure...
more >>
I want the COM component to hook into some sort of shutdown event, so I can
flush logs and stuff when IIS is shutdown, either by IISReset, "net stop
iisadmin", or the OS shutting down.
It appears that Application-scoped COM objects don't get an OnEndPage method
called when IIS is stopping - sh...
more >>