Search the web
Sign In
New User? Sign Up
AspClassicAnyQuestionIsOk
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 8382 - 8411 of 8411   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8382
I didn't read that article entirely but I don't think it'll work for your situation.   The author is stating that he's calling session.abandon which triggers...
Mark E
meckeard2000
Offline Send Email
Sep 23, 2008
6:32 pm
8383
Peter I think I get it takes me a bit so I have something to the sort in when some one updates thier profile that I do a date diff staing that if the date they...
Tony Trapp
flashmaster_0
Offline Send Email
Sep 23, 2008
6:50 pm
8384
If you store the last login and track that for each user as they hit each page on the site, dump the 0 and 1 concept and just check the date/time last logged...
Mark E
meckeard2000
Offline Send Email
Sep 23, 2008
7:01 pm
8385
Yes. I did something like this with PortaChat (a Classic ASP chat app that I wrote years ago), though I kept the current user list in an Application variable...
Peter Brunone
peter_brunone
Offline Send Email
Sep 23, 2008
7:30 pm
8386
With a very active site, I could see where that could be a better solution.  Why hit the DB for each and every page hit when you don't have to?   Tony - does...
Mark E
meckeard2000
Offline Send Email
Sep 23, 2008
7:51 pm
8387
Hey Peter thanks for the suggestion is works great I get it set that after 4 hours users must login and it works after they leave the site with out session and...
Tony Trapp
flashmaster_0
Offline Send Email
Sep 23, 2008
11:13 pm
8388
Classification: UNCLASSIFIED Caveats: NONE Greetings: I've built a small app (using Microsoft FrontPage) to collect registration information for a conference....
Gruber, Jack W SMSgt ...
tschepone
Offline Send Email
Sep 26, 2008
5:19 pm
8389
Is there a reason you can't use the ID?  What do you mean your getting nowhere?  Is there a technical issue or error preventing you from doing so?   Post...
Mark E
meckeard2000
Offline Send Email
Sep 26, 2008
5:25 pm
8390
Classification: UNCLASSIFIED Caveats: NONE This is all generated by FrontPage. All of the rest of the confirmation requests work, but the ID comes up blank....
Gruber, Jack W SMSgt ...
tschepone
Offline Send Email
Sep 26, 2008
5:30 pm
8391
Why not: Id = year(now) & month(now) & day(now) & hour(now) & minute(now) & second(now) & Session.SessionId or Id = DATEDIFF("s", "6/5/1957 12:00:00", now())...
Marinho
lucemar
Offline Send Email
Sep 26, 2008
6:12 pm
8392
Seeing as how I haven't touched FP in ages and probably never will, that code doesn't mean much to me.    Is there more to it?    I'm afraid that while FP...
Mark E
meckeard2000
Offline Send Email
Sep 26, 2008
7:41 pm
8393
Classification: UNCLASSIFIED Caveats: NONE Two attachments. Data.txt is the page that populates the database after colleting data from the 3 previous...
Gruber, Jack W SMSgt ...
tschepone
Offline Send Email
Sep 26, 2008
7:53 pm
8394
Jack -  I don't see any attachements.  Can you resend?    Mark ... From: Gruber, Jack W SMSgt NGCA <Jack.Gruber@...> Subject: RE:...
Mark E
meckeard2000
Offline Send Email
Sep 26, 2008
7:58 pm
8395
When you insert something is the opportunity to grab the newly created ID with @SCOPE_IDENTITY for sql2005 (used to be @@IDENTITY would be OK but has...
mallard
ttmallard
Offline Send Email
Sep 26, 2008
7:59 pm
8396
Sure, standby SMS Jack Gruber NCC California National Guard 916-854-3560 ... Sent from my BlackBerry Wireless Handheld ________________________________ From:...
Gruber, Jack W SMSgt ...
tschepone
Offline Send Email
Sep 26, 2008
8:00 pm
8397
Classification: UNCLASSIFIED Caveats: NONE My firewall ate them. Pdf's should get through //SIGNED// Jack Gruber, SMSgt. ANG NCC/IA, JFHQ CA DSN 466-3560...
Gruber, Jack W SMSgt ...
tschepone
Offline Send Email
Sep 26, 2008
8:05 pm
8398
The list doesn't accept attachments. However, if you look at the raw content of the original email, you should be able to see the content of the three files...
Peter Brunone
peter_brunone
Offline Send Email
Sep 26, 2008
8:11 pm
8399
FrontPage Bot 0is saving to a file, not a database, cfr U-File="_private/form_results.csv". So no ID field too grasp! Use a hidden field with generated content...
Georges Lens
geolens
Online Now Send Email
Sep 26, 2008
8:57 pm
8400
Classification: UNCLASSIFIED Caveats: NONE Thanks. I pretty much already decided to go the hidden field approach. //SIGNED// Jack Gruber, SMSgt. ANG NCC/IA,...
Gruber, Jack W SMSgt ...
tschepone
Offline Send Email
Sep 26, 2008
8:58 pm
8401
It doesn't need to be a database to be a datasource to ASP, you can create a datasource via ODBC to the csv file as a datasource and add your own ID to that...
mallard
ttmallard
Offline Send Email
Sep 26, 2008
9:00 pm
8402
Hello, I have worked with sessions in .NET and it is relatively simple. I have a project that I need to do in ASP Classic and was wondering what is a simple ...
mbelcher
AspClassicAnyQuestion...
Send Email
Oct 4, 2008
12:13 am
8403
almost identical in ASP. http://learnasp.com/freebook/asp/statesessions.aspx On Fri, Oct 3, 2008 at 7:13 PM, mbelcher...
Charles Carroll
charlesmarkc...
Online Now Send Email
Oct 4, 2008
12:17 am
8404
As I understand it, ASP sessions are much less scalable and you're subject to serialization (i.e. an object in session can only be used by one thread at a...
Peter Brunone
peter_brunone
Offline Send Email
Oct 4, 2008
12:30 am
8405
Hello, I have worked with sessions in .NET and it is relatively simple. I have a project that I need to do in ASP Classic and was wondering what is a simple ...
mbelcher
AspClassicAnyQuestion...
Send Email
Oct 4, 2008
2:09 am
8406
Add code to a .asp file that checks security level and/or permission level and include it in every page that needs to perform this action.   At this top of...
Mark E
meckeard2000
Offline Send Email
Oct 4, 2008
2:32 pm
8407
Hi, I have created a web page, on which i have not applied javascript checks because anyone can disable javascript on his system, so i used asp classic, I read...
muhammadjubairqazi
muhammadjuba...
Offline Send Email
Oct 7, 2008
1:30 pm
8408
This is javascript and probably where you're experiencing the issue:   <SCRIPT>document. forms.err. submit(); </SCRIPT>   Use a standard HTML submit...
Mark E
meckeard2000
Offline Send Email
Oct 7, 2008
1:47 pm
8409
Sorry, hit something that sent the email early :(   This is javascript and probably where you're experiencing the issue:   <SCRIPT>document. forms.err....
Mark E
meckeard2000
Offline Send Email
Oct 7, 2008
1:49 pm
8410
Is it possible for a long-running SQL query executed from an ASP page to stop and display only the queried result on a time alotted(let's say 1 minute)? In...
goriojuan
Offline Send Email
Oct 8, 2008
6:07 am
8411
For as far as I know this isn't possible. Regards, Mischa Van: AspClassicAnyQuestionIsOk@yahoogroups.com [mailto:AspClassicAnyQuestionIsOk@yahoogroups.com]...
Mischa Kroon
aemca_san
Offline Send Email
Oct 8, 2008
10:23 am
Messages 8382 - 8411 of 8411   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help