Even that doesn’t work ;-( Ilyas ... From: ILyas [mailto:lists@...] Sent: Monday, November 01, 2004 9:58 AM To: active-server-pages@yahoogroups.com ...
Hello, I have a problem. I am querying a database from ASP and getting 2 Recordsets. 1 RS is a reference RS used to compare the other RS. Is there a easy way...
Hi Ilyas, ... Did you look in the IIS Logfiles, or only the server logs? Look in the log file for the hit you made and tell us what the error says. If it's a...
Hi Mahesh, ... Are you wanting to only return records that are the same on both recordsets, or are you wanting to return a complete listing (side by side...
I have got these 2 Recordsets after querying them separately from the ASP code. Now using this ASP code I have to compare them and display either of the...
... The order to process them in is 2, 3, 1 (I added numbers to the results above). As Shawn said, put both recordsets into separate arrays. Get the upper...
I was able to achive result earlier before posting. However, for the other results I was facing problem in compare RS1: FName (Field Name) Tom Dick Harry Nancy...
I was able to achive result 2 earlier before posting. However, for the other results I was facing problem in comparing RS1: FName (Field Name) Tom Dick Harry ...
... Well, in the SQL statement, you need to ORDER BY FName ASC, so that the two recordsets will be in the same order. Then, you need to put each recordset into...
I hv no ctrl over the server - sent an email to support team - to enable this - if nothing works - will hv to use the local host for the further development b4...
I work for this company, http://www.naltabyte.se , and we are now looking for people who can help us figure out how to improve (miopages) further. I'm not...
I need to connect to a dbase database, but cannot seem to get it right. Here's my connection string: strCon = "Driver={Microsoft dBASE Driver (*.dbf)};" & _ ...
This site has a great example http://www.asp101.com/samples/viewasp.asp?file=database%2Easp _____ From: Chris Hagwood [mailto:cwh@...] Sent: November 2,...
Probably has something to do with the path of the database file. If E:\ is mapped to a network resource, try moving the *.dbf file to a local folder, change...
Yes, that was the problem... now the problem is that I don't have permission it seems to view the data! Argh! I may just have to copy it locally and do it...
If permission is the problem, try the following: 1. In the IIS management console snap-in thingy, navigate to the file(s) that need to access the network...
Hi Everyone! I'm new to this chat, so I wanted to say HELLO! Also, can anyone help me code a timer which times how long a function takes to run. I need to...
Not sure about javascript (sorry - too rusty with my JS nowadays), but in VBScript you could do something like this :- Function fnMyFunction() Dim dStartTime,...
Does anyone use Webworkz for their web hosting? At work we do (I use a Zesthost for my personal sites), and they seem to be down. I am wondering if anyone has...
I have never used a subdomain before and would like to try. Our web host will set up this subdomain for us: http://articles.independent-sales-reps.com We want...
There are 2 issues here. The first issue is that you should not settle for a host that is so inflexible. I moved all my domain names to GoDaddy.com. They're...
Hi, I have an html page which has frames. The srce for one of the frame is a query page(query.asp) and the source for other frame is the results(results.asp)...
Why do you want to refresh? With frames, people must refresh the individual frame documents by selecting the frame and choosing refresh. Otherwise the whole...
Thanks John. It does help me a bit. Here's what the users do. When the get the results for the query, they click on a particular record, this opens a new...
Rather than instructing the user to refresh their browser, you could accomplish the same thing with a link targeted at the results page's frame. That would...
Hello all, I'm a new memebr in this group, and i have a question. I'm using Windows xp pro, i installed IIS on my PC to see my .asp files on the browser. I...
You don't write the ASP file's path, you write the computer's URL. Go back to the IIS installation notes and make sure you are getting to the sample pages...
How about storing the query in a session variable that gets checked every time that the results page gets loaded. For example, when the query gets submitted,...
Thankx Mr. David for your reply. The asp file's is right.. i wrote it http://localhost/file.asp Where: ( file.asp ) is the asp file. So, what is the wrong? ...