What is this statement doing? I new to ASP.
ac = oelookups.execute.Get_AC(phone,country).return_value;
I'm assuming that it executes a program named oelookups and a function Get_AC with the parameters phone and country. The return value will be place in the ac variable.
I have put response.write statements in the oelookups program, but they are not displayed.
In searching, I have found that there are other copies of the oelookups programs in different folders on the web server.
How do I ensure that it is using the right program? From the folder that I want.
ac = oelookups.execute.Get_AC(phone,country).return_value;
I'm assuming that it executes a program named oelookups and a function Get_AC with the parameters phone and country. The return value will be place in the ac variable.
I have put response.write statements in the oelookups program, but they are not displayed.
In searching, I have found that there are other copies of the oelookups programs in different folders on the web server.
How do I ensure that it is using the right program? From the folder that I want.