Hallo Everybody ? is there any CDONTS "Boffins" here ? I need some help ? Actually what i need is a simple feedback from that gets mailed via the CDONTS...
Hi list- Could you please give the right direction on zipping files ? I must zip (an unzip later) a .MDB file and I don't know where to start. Thanks in...
Start with www.winzip.com There's a free trial version there (I don't know of anybody who has registered it tho'), then install it, right click the .mdb file...
I have an ASP application where I want to keep a count of how many times each page is accessed in a database. I am worried about database locks though......
There's only one thing with the Session_OnStart approach, I'm 99% sure that it relies on the user have session cookies enabled, people with them disabled would...
Hi Mark-- Don't over think it :) First, the method you mention of keeping an application variable to maintain the number of sessions won't work very well, and...
Sounds like a bizarre request, but I'll explain... I need a system to pull POP3 message headers, determine if any fit a profile, and pull the messages I...
Hi Mark, ... Sessions will be created whether the user has cookies enabled or not. The problem is that a new session will be created for every single hit to...
Hi Mark, ... Then do it. ;) ... Ouch! Application variables require locking the application, preventing any other session from attempting to modify (and in...
Hi, I have a question. I'm using an Access database and I have a field that needs to be auto-incremented for every entry into the database. Normally I would...
Thanks guys for your replies. I'm puzzled by your comment, Shawn, (see below). Assuming a 'dumb' database, like Access, it would be neccessary to return a...
Blimmin' heck!! Well, it's next to impossible to relate an asp/web page to a timed event, since the web page simply executes and then terminates. You really...
Wrox ASP.NET and VB.NET www.wrox.com <http://www.wrox.com> They rule ! =) ... From: formkid100 [mailto:formkid100@...] Sent: den 25 februari 2002 19:54 ...
You'll probably have to just create the value yourself and put it manually into the appropriate text field using something like 'Read largest value from field,...
Sorry to hear about your brother... My condolences.. The IPSync program sounds like a few that I found in other places. It would work, but I'm looking for a...
Hi, I have a question. I've created a site with a login page. However, I found out that a way to bypass the login page is simply by typing in the address of...
... Once you've logged the user in, record that they're logged in somehow (session variable or cookie is easiest and reasonably secure), then, at the top of...
Actually this is quite easy. If you're using sessions (which is a very typical usage for this type of thing), you could do something like: 1. Have a login page...
Hi Haikal, ... Doing this would require a session variable that you have to check at the beginning of each pages processing. Basically, you have a login form,...
can someone tell me the difference between Server.UrlEncode and Server.UrlPathEncode? thanks, Gene Kula Software Developer CaseShare Systems, LLC 1800 Glenarm...
Aloha, I do this by using the session variables. On login page, if they are successful, then set Session("UserName") = "user" . When they logout set it to...
Hello all, I have a annoying problem, i have created an odbc on my puter to connect to an sql server, i open it access, i import the tables...so far so good,...
Niels Bieze
nrbieze@...
Mar 6, 2002 9:49 am
1988
Make a session variable for 'logged in' that is populated at the logon screen. Have each page check the session variable to see if a user has logged on or not....