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

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 5916 - 5945 of 8411   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
5916
Hi Nick, Request.write was in your original post - I copied and pasted lol :) If there are only that many items then a quicksort won't be noticeably quicker. ...
Dan Powderhill
danaspelite
Offline Send Email
Apr 1, 2005
8:26 am
5917
If the window is opened by javascript and assigned to a variable when it is opened it should be fairly easy to do, if it's not it's going to be a lot harder....
Dan Powderhill
danaspelite
Offline Send Email
Apr 1, 2005
8:28 am
5918
... Yea, that's what I was thinking too. But, JavaScript being the weakest part of my ASP arsenal, I got confused in two places: 1) where to define the window...
vkanids@...
vkanids
Offline Send Email
Apr 1, 2005
12:58 pm
5919
You will likely need to Telnet in a session controlled by ASP google Telnet ASP and you will find the tool you need. On Mar 30, 2005 10:03 AM,...
Charles Carroll
charlesmarkc...
Online Now Send Email
Apr 1, 2005
1:58 pm
5920
http://learnasp.com/learn/formforeach.asp has an example of what you want....
Charles Carroll
charlesmarkc...
Online Now Send Email
Apr 1, 2005
2:00 pm
5921
For this problem...create a role basis...For example, if your an administrator/member then display menu...if not then hide...
GJ
goriojuan
Offline Send Email
Apr 4, 2005
1:23 am
5922
Hi everybody After my hassles last week trying t get a list of files from an FSO into an array, I've set up a bubblesort (copied code form 4guysfromrolla) but...
Driver, Nicholas
dcase14
Offline Send Email
Apr 4, 2005
1:47 am
5923
Hi Guys I'm getting an"Unspecified error" on line 11 but this changes depending on whic connection string I use (obviously). The connection string is in an...
Driver, Nicholas
dcase14
Offline Send Email
Apr 4, 2005
1:49 am
5924
i'm trying to build a search engine that seeks keywords from the DB. When i enter just one word, this script works fine, but when i enter two or more words, i...
floorbamboo
Offline Send Email
Apr 4, 2005
2:07 am
5925
none of those 3 is a good idea. look at http://www.learnasp.com/learn/dbopen.asp for the best connection string for Access that minimizes chance for ...
Charles Carroll
charlesmarkc...
Online Now Send Email
Apr 4, 2005
2:25 am
5926
You must tell us the exact SQL that occured after the IFs and etc. ran by response.writing it ala http://www.learnasp.com/learn/sqlwrite.asp Tell us what the...
Charles Carroll
charlesmarkc...
Online Now Send Email
Apr 4, 2005
2:27 am
5927
Just give us an example list of files and then the list of how you want them sorted. Also include the code you use to extract the list of files. Mike "Driver,...
Michael Brinkley
mbrink1111
Offline Send Email
Apr 4, 2005
2:35 am
5928
This is the sql statement that came out: SELECT * FROM articles WHERE Keywords LIKE '%agriculture%' AND LIKE '%news%' ORDER BY ArticleDate DESC ... ...
flor bamboo
floorbamboo
Offline Send Email
Apr 4, 2005
2:55 am
5929
SELECT * FROM articles WHERE Keywords LIKE '%agriculture%' AND LIKE '%news%' ORDER BY ArticleDate, DESC ah in Access it is a * not a % SELECT * FROM articles...
Charles Carroll
charlesmarkc...
Online Now Send Email
Apr 4, 2005
3:49 am
5930
Yes, sir, it is in Access. But the problem remains. Please notice the additional single quote at the end of the error report: Error Type: Microsoft JET...
flor bamboo
floorbamboo
Offline Send Email
Apr 4, 2005
5:03 am
5931
ah forgot second Keywords ala Keywords LIKE '*news*' AND LIKE '*agriculture*' should be Keywords LIKE '*news*' AND Keywords LIKE '*agriculture*' ^^^^^^^^^^^ ...
Charles Carroll
charlesmarkc...
Online Now Send Email
Apr 4, 2005
5:12 am
5932
That did it! Thanks very much, sir. ... http://groups.yahoo.com/group/AspClassicAnyQuestionIsOk/ ... AspClassicAnyQuestionIsOk-unsubscribe@yahoogroups.com ... ...
flor bamboo
floorbamboo
Offline Send Email
Apr 4, 2005
5:22 am
5933
I need to Call DnsQuery() from my C# program such that it return the status of DNS. Is there any body who can help me, please tell me what should be exact...
Anuj Kumar
anuj_kr_nspl
Offline Send Email
Apr 4, 2005
10:40 am
5934
You are asking on a ASP list. Since it is C# ask on: http://groups.yahoo.com/group/AspNetAnyQuestionIsOk which is a good place to gte any C# answers....
Charles Carroll
charlesmarkc...
Online Now Send Email
Apr 4, 2005
12:19 pm
5935
http://www.amazon.com/exec/obidos/ISBN=0932633013/learnasp Secrets of Consulting by Gerald Wienberg And if you want to apply it in your Consulting practice...
Charles Carroll
charlesmarkc...
Online Now Send Email
Apr 4, 2005
1:42 pm
5936
Hi Charles Something stranged happened yesterday afternoon (after my page not working at all for most of the day), it worked. It just stsrted to work without...
dcase14
Offline Send Email
Apr 5, 2005
12:34 am
5937
Hi Michael The files have all been named renamed during the backup process to be <filename>_<dateofbackup>. e.g. backup_20050331 backup_20050214 ...
dcase14
Offline Send Email
Apr 5, 2005
12:39 am
5938
User: hanamichi.songoku Date/Time: 4/4/2005 3:58:51 AM Application: myApplication Server: myApplication.audacious.com HTTPS: on Browser: Mozilla/4.0...
Erwin Rommel Felix 20...
lordmasterch...
Offline Send Email
Apr 5, 2005
2:46 am
5939
OK, it looks like your array comes out to be: 20050331,20050214,20050405,20050101 Normally what ya need to do is to compare as dates, but looks like the...
Michael Brinkley
mbrink1111
Offline Send Email
Apr 5, 2005
2:53 am
5940
Erwin, What code are you using to check the value in the querystring? If it's a numeric value, try: If IsNumeric(Request.Querystring("YourID")) Then 'ID is...
Mark E
meckeard2000
Offline Send Email
Apr 5, 2005
10:05 am
5941
Erwin did u check that whether the value is passed to the querystring at all otherwise you can use a default value in either the page where the value is...
He Man
abhilash18
Offline Send Email
Apr 5, 2005
11:14 am
5942
http://www.amazon.com/exec/obidos/ISBN=0764526413/learnasp About Face 2.0 by Alan Cooper and http://www.amazon.com/exec/obidos/ISBN=0672326140/learnasp Inmates...
Charles Carroll
charlesmarkc...
Online Now Send Email
Apr 5, 2005
1:41 pm
5943
If you attended a class taught by Charles Carroll about ASP or ASP.net then we have a new place to sign up and get after class benefits. want some after class...
Charles Carroll
charlesmarkc...
Online Now Send Email
Apr 5, 2005
1:44 pm
5944
I have some ASP code: If strMode = "new" Then .AddNew .Fields("ho")=(Request.Form("txtho")) .Fields("ten") = (Request.Form("txtten")) .Fields("ngaysinh") =...
maiphuong1412
Offline Send Email
Apr 5, 2005
4:04 pm
5945
The full code should be something like this :- with rsRecordset If strMode = "new" Then .AddNew .Fields("ho")=(Request.Form("txtho")) .Fields("ten") =...
Dan Powderhill
danaspelite
Offline Send Email
Apr 5, 2005
4:28 pm
Messages 5916 - 5945 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