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

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 8544 - 8573 of 8655   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8544
I am still learning how to do this. I have created a sql statement inside of my code to look up a list for example location. I am not sure how to replace the...
Tammy Barbee
tgmiller5
Offline Send Email
May 2, 2009
11:35 pm
8545
Basically you just remove the constraint on the one location, but add that field to the order by clause as the first field so the names get grouped by...
mallard
ttmallard
Offline Send Email
May 3, 2009
1:58 am
8546
Oooops, missed removing the "where" select location, firstname, lastname, employeenumber from xyz order by location, lastname -tom ... From: "mallard"...
mallard
ttmallard
Offline Send Email
May 3, 2009
2:00 am
8547
I am so sorry but I think I was not clear. When a user logs in with their username and password, they should only see the list of locations that are assigned...
Tammy Barbee
tgmiller5
Offline Send Email
May 3, 2009
1:11 pm
8548
... WHERE INLIST(location,5,6) is I think the correct syntax...
Charles Carroll
charlesmarkc...
Online Now Send Email
May 3, 2009
1:24 pm
8549
I don't know your db setup but I suspect you're looking in the wrong places? If the location table that you're querying already has the user name then why not...
Christie Mason
cmasonvargas
Offline Send Email
May 3, 2009
4:42 pm
8550
OK, you have to tell us what tables are involved if you really want an answer, we're just guessing. But, it has to have more than one table for this, a...
mallard
ttmallard
Offline Send Email
May 3, 2009
6:54 pm
8551
AND I'd suggest letting us know if location info is in one text file as an array/list, or is it in multiple rows in a database that may be integer or text...
Christie Mason
cmasonvargas
Offline Send Email
May 4, 2009
12:35 pm
8552
Thanks for everyone help. I got it.   Thank you so much.   Take care, Tammy Barbee ... From: Christie Mason <cmason@...> Subject: RE:...
Tammy Barbee
tgmiller5
Offline Send Email
May 4, 2009
10:27 pm
8553
Tammy, it's usual to publish the solution so we can learn from it as well, could you please do that? Thanks, tom mallard .net web apps - project mgmt consumer...
mallard
ttmallard
Offline Send Email
May 4, 2009
11:15 pm
8554
use *WHERE location in ('5','10','15','13')* ... -- Regards, Jitendra Kolhe [Non-text portions of this message have been removed]...
jitu kolhe
jp.kolhe
Offline Send Email
May 6, 2009
12:49 pm
8555
This is actually a classic ASP question but I think the VB would be almost the same if someone doesn't mind helping me out. I am storing the list of company id...
ibeshank
Offline Send Email
May 12, 2009
5:14 pm
8556
I am using ASP Upload to upload images. I have some checkboxes as part of the form to allow the users to choose some options. When I upload the form,...
Darth Mikey D
darth_mikeyd
Offline Send Email
May 14, 2009
7:55 pm
8557
... It's probably returning a collection that you need to loop through, haven't used it in a while, to find out I try stuff, they have either a length or count...
Tom
ttmallard
Offline Send Email
May 14, 2009
8:33 pm
8558
I will check that out, but I don't think that it is returning a collection. I tried writing out the string, and it only returned the first box checked. I think...
Darth Mikey D
darth_mikeyd
Offline Send Email
May 15, 2009
3:32 am
8559
OK, I think you just need to add another form on the page with your checkboxes, that should deliver them like before, may need to declare the page a multi-part...
mallard
ttmallard
Offline Send Email
May 15, 2009
3:53 am
8560
I have never had to do that. I have to leave the layout of the page the same. Do I put the new form inside of the current form, or how do I do it? Thanks...
Darth Mikey D
darth_mikeyd
Offline Send Email
May 15, 2009
4:03 pm
8561
Without seeing the code it's hard to answer that ... you can't nest forms, they have to be separate but they post at the same time to the same place. If you...
mallard
ttmallard
Offline Send Email
May 15, 2009
6:10 pm
8562
Hi there, I'm new to this group and i hope my 5 years of experience on asp will help some of you. In my opinion, you can simply hide your emails by using...
TALBI Mohamed Ettaki
talbi_med_ett
Offline Send Email
May 22, 2009
11:56 pm
8563
Can you send a copy of your code? That'd be very helpfull....
TALBI Mohamed Ettaki
talbi_med_ett
Offline Send Email
May 22, 2009
11:56 pm
8564
I am stuck on this one. I have some code that needs to perform the following: if the number is more than 5 it goes to testenew form; if it is less than 4 then...
Tammy Barbee
tgmiller5
Offline Send Email
May 28, 2009
5:10 pm
8565
Where are you setting Session("Number" ) ?  I don't see it.    You need to wrap this up in an if/else statement, kind of like this:   If Session("Number" )...
Mark E
meckeard2000
Offline Send Email
May 28, 2009
5:28 pm
8566
... Nope. You've got a number of things omitted: 1. you are retrieving rs.Fields("number"), but you are testing a Session variable of that name. Where do you...
erickestler
Online Now Send Email
May 28, 2009
5:40 pm
8567
No reason to duplicate things.... Plus what they said if the session variable is not already set. response.write "<tr>" response.write "<td> "&...
Charles Carroll
charlesmarkc...
Online Now Send Email
May 28, 2009
6:34 pm
8568
Thanks for your help but I figured it out.   Here is the code: rs.Open sqlstatement, connection While Not rs.EOF if rs.fields("number")  = 5 then ...
Tammy Barbee
tgmiller5
Offline Send Email
May 28, 2009
7:04 pm
8569
I got this working. Thanks to everyone who responded....
Darth Mikey D
darth_mikeyd
Offline Send Email
May 28, 2009
7:38 pm
8570
Sorry if this isn't the correct place to post this, but I want to be able to do this with asp. I have a database that lists a few different flash animations. A...
Darth Mikey D
darth_mikeyd
Offline Send Email
May 28, 2009
7:49 pm
8571
I think you need to pass in the page url to the flash as a parameter and have the link activate from there since the animation is where the user is clicking....
mallard
ttmallard
Offline Send Email
May 28, 2009
11:14 pm
8572
All, I have been a very silent member of this group for a while now. I joined this group when I was developing an informal Access database with access on a...
qa_director_2003
qa_director_...
Offline Send Email
Jun 7, 2009
5:55 am
8573
Well, now. I have a large extranet application running on SQL Server, using Classic ASP, and it works "just fine" - but I don't use Ajax and have not...
Cheri Harder
cherime2
Offline Send Email
Jun 7, 2009
2:01 pm
Messages 8544 - 8573 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