- Retriving data from Database
I have a form that displays information selected from an Access Database. A select statement is used to do this on my asp pageSQLQuery = "SELECT * FROM tblopgaCOm2 WHERE billNo = '"& Request.Form("BILLNO") & "' AND area LIKE 'AUDIT'"billNo and area are the 2 fields used toget...
- retrieving XML DTD doc into asp
I have a DTD xml doc and need to read the data from it and display it usingASP, help please.....
- Retrieving Varable from ASP to ASP.
I have an .ASP page that comes up, and I am trying retrieve a variable fromthe previous .ASP page. However none of the variables from the previous .ASPpage are available to the current .ASP page. There are three pages in thischain.1. NewUser.htmlInformation is input in this page, and posted to t...
- Retrieving users email address
I'm trying to retrieve the users email address via ADSI in ASP.So far, I have the following code:Set oUser = GetObject("WinNT://domain/" & Request.Form("UID") & ",user")Response.Write oUser.EmailAddressBut I get the following message:"The directory property cannot be found in the cache. "An...
- retrieving the choise of a combo box
Hi,On a webpage I have three comboboxes. The second and the third aredynamically filled dependent from the choice in the first combobox.Each choice in all three boxes consist of a numeric value and astring. This is done through a javascript and it uses the numericvalues of the first box. When su...
- Retrieving The Application Name Programatically
Hi, During loading of the Global.asax, I need to get back the "application name" that is configured in IIS. I have scoured the Http classes but there does not seem to be any way to get to it. I know in IIS 6.0, I could retrieve it through metabas.xml but I need this solution to work on Windows 2...