Search the web
Sign In
New User? Sign Up
active-server-pages · Active Server Pages Developers' List
? 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 11292 - 11321 of 12395   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11292
I'm looking for a statement that would be the equivalent to WHERE xxx IN(value1,value2,value3) in ASP/VBS. It is very handy in SQL, but it doesn't work in an...
Chris Hagwood
chris_hagwood
Offline Send Email
Dec 2, 2005
9:05 pm
11293
Chris, What you are looking for is Select Case XXX case value1, value2 ... End select http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script5 ...
Merritt, Bruce
bpm9648
Offline Send Email
Dec 2, 2005
10:31 pm
11294
Hi all i would like to dim an array, and then convert a string into that array. the array should be dynamic. i have the code below, and i keep getting type ...
Moshe Tapnack
tapnack
Offline Send Email
Dec 4, 2005
4:47 pm
11295
Hi Moshe, ... Use a variant instead of an explicit array and don't bother redimensioning it unless you're adding or removing elements after you've assigned...
Shawn K. Hall
shawn_ra
Online Now Send Email
Dec 4, 2005
5:34 pm
11296
Your code for counting the number of commas has a couple of problems ... Len(Replace(ShortNoticeProds, ",", "," & "*")) - Len(",") takes the length of the new...
David Smart
smartware_co...
Offline Send Email
Dec 4, 2005
8:05 pm
11297
sql="select * from ¾Ç¥Íªí " Set rs= Server.CreateObject("ADODB.Recordset") rs.Open sql, conn, 2,2 Do While Not RS.EOF response.write "<a...
¤p­¸¥J
tungfei0104
Offline Send Email
Dec 10, 2005
5:12 pm
11298
I would assume you need some ampersands and proper quotes in the strings you are writing. Such as: response.write "<a href='d.asp?cno=" & rs("院系代號") ...
Chris Hagwood
chris_hagwood
Offline Send Email
Dec 10, 2005
5:38 pm
11299
I am using Access Database for an ASP online employee directory. The dB has three tables: one is the main table with about 400 employee records. Within that...
Gary Broyhill
broyhillg
Offline Send Email
Dec 12, 2005
8:16 pm
11300
... What are your queries? Can you response.write them out on screen and post them here? manzo...
Paul Manzotti
heronoseven
Offline Send Email
Dec 12, 2005
8:18 pm
11301
Mr. Broyhill: It sounds like your queries are pulling back the wrong information, as it certainly is possible to do exactly as you say (having done it myself ...
Mills, Andy R. (Regen...
mtdewisgreen
Offline Send Email
Dec 12, 2005
8:40 pm
11302
qs1 = "SELECT * FROM [employee] WHERE [lastname] LIKE '" & Request.QueryString("lastname") & "%' ORDER BY [lastname], [firstname]" ... From:...
Gary Broyhill
broyhillg
Offline Send Email
Dec 12, 2005
8:42 pm
11303
Mr. Broyhill: I think you need to join the other two tables into your Query, as the [employee] table, as you have listed below would only include the ID ...
Mills, Andy R. (Regen...
mtdewisgreen
Offline Send Email
Dec 12, 2005
8:52 pm
11304
... You are only pulling data from one table. To get the values of the data from the child tables, you will need to do joins. [Non-text portions of this...
Chris Hagwood
chris_hagwood
Offline Send Email
Dec 12, 2005
8:54 pm
11305
Ah ha Well silly me :) I will get to work on that! (my first time doing this -- surprise surprise, eh) ... From: active-server-pages@yahoogroups.com ...
Gary Broyhill
broyhillg
Offline Send Email
Dec 12, 2005
9:13 pm
11306
... <delete a whole bunch of crap that I wrote> Sorry, read that completely wrong. Access is performing a join for you when you look at the database in Access....
Paul Manzotti
heronoseven
Offline Send Email
Dec 12, 2005
9:16 pm
11307
Thanks that helps! Now to dig out my JOINS tutorials that I never read ... From: active-server-pages@yahoogroups.com ...
Gary Broyhill
broyhillg
Offline Send Email
Dec 12, 2005
9:29 pm
11308
Much simpler than that. Go to Access and construct a query that works, then go to the SQL design mode and grab the SQL. Regards, Dave S ... From: Gary...
David Smart
smartware_co...
Offline Send Email
Dec 12, 2005
10:51 pm
11309
This is something I haven't done before, connect up to a *.dbf. (Used to Access, MySQL etc) I am using the connection string: ConnectString =...
Alex Clough
alex_blueparrot
Offline Send Email
Dec 13, 2005
9:15 am
11310
When I query a dbf, I'm only able to do it after I've made a connection to it from MS Access. Access will create a file that the driver apparently needs in...
Chris Hagwood
chris_hagwood
Offline Send Email
Dec 13, 2005
12:17 pm
11311
Thanks Dave! ... From: active-server-pages@yahoogroups.com [mailto:active-server-pages@yahoogroups.com] On Behalf Of David Smart Sent: Monday, December 12,...
Gary Broyhill
broyhillg
Offline Send Email
Dec 13, 2005
1:47 pm
11312
Who is good and cheap now for ASP.Net with either MS Access or SQL Server database?...
tomcarr1
Offline Send Email
Dec 13, 2005
9:43 pm
11313
Who is good and cheap now for ASP.Net with either MS Access or SQL Server database?...
tomcarr1
Offline Send Email
Dec 13, 2005
9:51 pm
11314
http://www.ZestHost.com I Gig of space for only $30 a year I have been using them for a couple years and currently have five domains with them right now and...
soren.j.winslow@...
sorenwinslow
Offline Send Email
Dec 13, 2005
9:55 pm
11315
HYPERLINK "http://www.impacthosting.com/"www.impacthosting.com I have never had a problem with them and they are very affordable but they are strictly email...
Bob Boisvert
twingirls1999
Offline Send Email
Dec 13, 2005
10:52 pm
11316
Your DBQ parameter looks wrong. In my open statements (Access) I have the full path and filename of the database, including the .mdb. I would expect that...
David Smart
smartware_co...
Offline Send Email
Dec 14, 2005
12:19 am
11317
... No, here's a sample of DBF code from http://www.tutorialized.com/tutorial/ASP-and-DBF-database-file-connection/1967 Function OpenDBFConn(Path) Dim Conn:...
Chris Hagwood
chris_hagwood
Offline Send Email
Dec 14, 2005
12:42 am
11318
www.myhosting.com ... From: active-server-pages@yahoogroups.com [mailto:active-server-pages@yahoogroups.com] On Behalf Of tomcarr1 Sent: Tuesday, December 13,...
Ray at home
ray_at_place
Offline Send Email
Dec 14, 2005
12:50 am
11319
Thanks Chris, I hadn't realised just how different the DBF interface needed to be. I notice in the example that the select: "Select * from [Persons#DBF]" has #...
David Smart
smartware_co...
Offline Send Email
Dec 14, 2005
2:52 am
11320
jodohost.com excellent support ... From: active-server-pages@yahoogroups.com [mailto:active-server-pages@yahoogroups.com] On Behalf Of tomcarr1 Sent: Tuesday,...
Moshe Tapnack
tapnack
Offline Send Email
Dec 14, 2005
9:18 am
11321
Shawn and David S - my thanks for getting back to me on this, it works great, just tried now. and my apologies for not getting back to you earlier! thanks...
Moshe Tapnack
tapnack
Offline Send Email
Dec 14, 2005
9:21 am
Messages 11292 - 11321 of 12395   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