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...
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...
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...
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...
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...
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...
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...
For as far as I know this isn't possible. Regards, Mischa Van: AspClassicAnyQuestionIsOk@yahoogroups.com [mailto:AspClassicAnyQuestionIsOk@yahoogroups.com]...
Dear All I've read about "page-break-inside" style and it seems to be exactly what I need. I am working on some report printings, and I need specific table to...
Hi All, I'm working on a form that is using CDONTS.NewMail for submission. This form has a select box with several options which link to a document that will...
You seem to be getting your other field values (e.g. Email) with the Request.Form object; is Request.Form("Reports") not working? Peter ... [Non-text portions...
Peter, "Reports" is the name/ID for the select box containing the options within the form called "SpecialReports" If I take out the string statement...
Bob, That's my point. You seem to know how to get fields from the form -- i.e. Request.Form(fieldName) -- so why are you trying to use the form name as the...
Bob, LIke Peter said, you don't need to use the form name to grab your control value in asp. Just use the name/ID that you have and it should work fine. ...
Mark & Peter, Thanks, that did the trick. For some reason I was thinking that the form itself had to reference with the form element being referenced. Thanks...
Classification: UNCLASSIFIED Caveats: NONE I know this is an ASP Classic list, but I'm pretty sure a lot of people are also hand coding SQL to get info out of...
Just replace sum with count Van: AspClassicAnyQuestionIsOk@yahoogroups.com [mailto:AspClassicAnyQuestionIsOk@yahoogroups.com] Namens Gruber, Jack W SMSgt NGCA ...
Oh; I was thinking he wanted to know how many times the word occurred in each *row* of a particular column. That makes more sense. ... [Non-text portions of...
Dang, it was that easy. Hours of frustration resolved in a few seconds. SMS Jack Gruber NCC California National Guard 916-854-3560 ... Sent from my BlackBerry...
New question. I need to COUNT and sum a couple of columns to get a complete count of how many times 'chicken' shows up. I have no clue where to begin. SMS Jack...
SELECT ((SELECT COUNT(Meal) FROM ChickenTable WHERE ChickenField1='Chicken' AND ChickenField2='Chicken') + (SELECT COUNT(Meal) WHERE ChickenField1='Chicken'...
Err Maybe: Select (Select count (id) from chickentable where field1='chicken') + (Select count (id) from chickentable where field2='chicken') If that doesn't...
Same idea; slightly different logic (i.e. mine was a bit more contorted... and yes, I spotted the syntax error in one of my subqueries). I got the impression...
Hello, I am new to asp. I need to pass a variable demo through different pages. How do I create a session variable for it and where do I place it. I need to...