Umm?
<%
session.timeout = 20
%>
This in your ASP page will override the IIS setting unless IIS has been set to not allow timeout overriding
http://www.eatdrinkandsleep.com
I wouldnt be asking how to do this if I knew how. Your code clears the original popup which is as I've said no use. I need to be able to check if it exists without clearing it.
if(to1!=0){
// Must check here to see if the window is open
// Only proceed if it isn't
newwin =...
But that clears the original popup because its reopening the popup, I need to be able to check if it exists without doing that as the popup contains stuff that is constantly added to.
http://www.eatdrinkandsleep.com
Not sure if I understand exactly, should it have the ... dots in there or filled in with the correct path.
The first just opens a new window.
The second clears the original window, which is no good. I need to keep whatever is in the popup there
http://www.eatdrinkandsleep.com
I'm just trying to find out if a popup window exists. I thought you could do this someway by referencing the name of the popup. Also there maybe more than one popup each with a different name. The creation of the popups is from some js code that keeps getting cycled.
By name I mean the...
I'm looking for a way to get any attachments from an email file (i.e. just the txt version of the file and not trying to parse an incoming email) and send this to the browser as a downloadable file.
http://www.eatdrinkandsleep.com
Covers both topics
http://www.4guysfromrolla.com/webtech/082400-1.shtml
To just check for cookies, write a cookie on page load then redirect to another page and see if you can read that cookie.
http://www.eatdrinkandsleep.com
In your browser click Tools, Internet Options, goto Advanced tab, scroll down and deselect 'Show Friendly HTTP Error Messages', click OK
Then run the page again
http://www.eatdrinkandsleep.com
Assuming you have some field in the db which says what level of access they have - 1,2,3 - where 1 might be all pages, 2 would be some other pages etc
So when they login set a session variable to this value e.g. session("access")
Then on the top of every page put this
<%
if instr("1,2"...
Using GetRows is far better than looping thru a recordset, much less strain on the server. And its just one line
the syntax is
arrayName=rs.getrows ' nothing else
Then you can loop through the array elements e.g.
response.write arrayName(0,0)
The first element is each field in a record, the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.