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

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 8455 - 8484 of 8655   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8455
Hi All, I'm creating a survey form whose data needs to be store in database. I'm using ASP and MYSQL for this. My form page is working fine, I mean Javascript....
javediq_143
Offline Send Email
Jan 7, 2009
3:48 pm
8456
I am trying to run a stored procedure on SQL Server. Here is the procedure: set ANSI_NULLS ON set QUOTED_IDENTIFIER ON GO ALTER PROCEDURE [dbo].[vb_get_name] ...
Darth Mikey D
darth_mikeyd
Offline Send Email
Jan 15, 2009
4:32 pm
8457
Only thing I see is I think you need to define the param as input-output, not just output. Most queries don't need the output param to get results like this,...
mallard
ttmallard
Offline Send Email
Jan 15, 2009
4:39 pm
8458
From: kathleendoherty199@...: FW: Visa ScamDate: Tue, 20 Jan 2009 20:12:26 +0000 From: hendersonr@...:...
Gavin Doherty
conedawg78
Offline Send Email
Jan 21, 2009
7:03 pm
8459
I am trying to read one ASP from another using the code below: <html><head> <TITLE>txtread.asp</TITLE> </head><body bgcolor="#FFFFFF"> <% ...
Jim
jim_a_h
Offline Send Email
Mar 4, 2009
11:04 pm
8460
Please help! At this point I'm banging my head against the wall!! The web address to the contact form is http://www.thevilla-austin.com/contactus.html The...
Jaime Hammond
jaimehammond
Offline Send Email
Mar 4, 2009
11:04 pm
8461
You just need to htmlencode the lines to display code: response.write HTMLEncode(thisline) & "<br>" I've noticed having to use replace() for some things to...
mallard
ttmallard
Offline Send Email
Mar 4, 2009
11:27 pm
8462
Add in some tracing code, write those to the screen, this will let you know if the email got to the server OK or not, the message object has .TimeSent which...
mallard
ttmallard
Offline Send Email
Mar 5, 2009
12:33 am
8463
Dear All, I have a table 'branch' with two fields: 1. branch_code 2. branch_name I have a page where I have a combo box with all branch codes. I want to show...
Sarfraz Memon
sarfraz_78
Offline Send Email
Mar 6, 2009
4:17 pm
8464
I'm going to assume this is a dropdownlist since there is no native combobox for the web ;) Is the user making the selection, or are you pulling it from...
Peter Brunone
peter_brunone
Offline Send Email
Mar 6, 2009
4:41 pm
8465
Thanks Peter, But how to submit the dropdownlist value on the same page? Do I have to write the function in vbscript? Sarfraz ________________________________ ...
Sarfraz Memon
sarfraz_78
Offline Send Email
Mar 6, 2009
5:41 pm
8466
Classification: UNCLASSIFIED Caveats: NONE Good Morning: I have been all over the Internet but cannot find out if it is possible to nest several SELECT COUNT...
Gruber, Jack W SMSgt ...
tschepone
Offline Send Email
Mar 6, 2009
6:43 pm
8467
You could do it in sub queries but that may not be the most effecient way to do it depending on how much data your searching.   select count(*) as...
Mark E
meckeard2000
Offline Send Email
Mar 6, 2009
6:47 pm
8468
Classification: UNCLASSIFIED Caveats: NONE I have nine columns, 300 rows, and I'm trying to count how many times the word 'beef' appears in those nine...
Gruber, Jack W SMSgt ...
tschepone
Offline Send Email
Mar 6, 2009
6:57 pm
8469
If you don't want to use Javascript, then you'll need a submit button for the form... or I suppose you could use client-side VBScript. ... [Non-text portions...
Peter Brunone
peter_brunone
Offline Send Email
Mar 6, 2009
7:52 pm
8470
I'm lazy, so would get the recordset w/300 rows, you flip through that a row at a time and for each of those you flip through the columns, but there's a lot to...
mallard
ttmallard
Offline Send Email
Mar 6, 2009
10:27 pm
8471
I would say that union is the fastest way to go here: Select count (columnname) from tablename where columnname like '%beef%' Union Select count (columnname2)...
Mischa Kroon
aemca_san
Offline Send Email
Mar 7, 2009
12:12 am
8472
Classification: UNCLASSIFIED Caveats: NONE Good suggestion. BUT, is there a way to make this work? Select Count (Meal) as Meals from results where...
Gruber, Jack W SMSgt ...
tschepone
Offline Send Email
Mar 7, 2009
8:16 pm
8473
You might get away with this: Select sum(counter) as totalcounter from ( Select count (columnname) as counter from tablename where columnname like '%beef%' ...
Mischa Kroon
aemca_san
Offline Send Email
Mar 7, 2009
8:39 pm
8474
Thought he was trying to check the "text" within those columns ... seems to me select count(*) union select count(*) will work, I like loops better as a...
mallard
ttmallard
Offline Send Email
Mar 7, 2009
11:23 pm
8475
Basically I need to count realtime how many and what type of meals are ordered for a banquet. The Select Count Union Works well, but I'd sure like to be able...
Gruber, Jack W SMSgt ...
tschepone
Offline Send Email
Mar 8, 2009
5:00 am
8476
That's easy, declare a variable for each total for each part of the union, then add a "select @Total = @Total1 + @Total2 ..." at the end to pass it back. tom...
mallard
ttmallard
Offline Send Email
Mar 9, 2009
2:17 pm
8477
Wold the variable be inm the for of Union=? I'm pretty new at this advanced stuff SMS Jack Gruber NCC California National Guard 916-854-3560 ... Sent from my...
Gruber, Jack W SMSgt ...
tschepone
Offline Send Email
Mar 9, 2009
2:41 pm
8478
declare @Total1 int declare @Total2 int ... declare @TotalN int --find the totals however you do it, my sense is it needs to be done row by row so I recommend...
mallard
ttmallard
Offline Send Email
Mar 9, 2009
2:59 pm
8479
Hi!! i want to validate a list box onthe onblur event and if no value is selected , display a message on the left using <span> and innerHTML here's what i have...
aashishn86
Offline Send Email
Mar 10, 2009
2:56 pm
8480
Hi I'm using cdo component in my asp page. I'm sending email to the client in html format. some client's received correct format and some clients received...
jagadeesh_en2000
jagadeesh_en...
Offline Send Email
Mar 10, 2009
2:56 pm
8481
First, I would suggest passing a reference to the list to make the method more extensible, i.e. onblur="validateCB(this)" Now to the real problem here. The...
Peter Brunone
peter_brunone
Offline Send Email
Mar 10, 2009
3:21 pm
8482
Hi All, If anybody has it, then please send me the ebook(s) of Classic ASP. Thanks Sarfraz...
Sarfraz Memon
sarfraz_78
Offline Send Email
Mar 12, 2009
6:22 am
8483
... thank you....... i'll try that out and post back......
aashishn86
Offline Send Email
Mar 12, 2009
3:50 pm
8484
I wiould like a copy of that too, if it's free. Thanks, Lorenzo Gunn...
Lorenzo@...
africa56
Offline Send Email
Mar 12, 2009
4:27 pm
Messages 8455 - 8484 of 8655   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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