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. ...
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....
... 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...
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...
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...
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...
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 ...
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...
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,...
This is the sql statement that came out: SELECT * FROM articles WHERE Keywords LIKE '%agriculture%' AND LIKE '%news%' ORDER BY ArticleDate DESC ... ...
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...
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...
ah forgot second Keywords ala Keywords LIKE '*news*' AND LIKE '*agriculture*' should be Keywords LIKE '*news*' AND Keywords LIKE '*agriculture*' ^^^^^^^^^^^ ...
That did it! Thanks very much, sir. ... http://groups.yahoo.com/group/AspClassicAnyQuestionIsOk/ ... AspClassicAnyQuestionIsOk-unsubscribe@yahoogroups.com ... ...
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...
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....
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...
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...
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...
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...
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...
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...
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...
I have some ASP code: If strMode = "new" Then .AddNew .Fields("ho")=(Request.Form("txtho")) .Fields("ten") = (Request.Form("txtten")) .Fields("ngaysinh") =...
The full code should be something like this :- with rsRecordset If strMode = "new" Then .AddNew .Fields("ho")=(Request.Form("txtho")) .Fields("ten") =...