Here’s a useful ASP page which I wrote which will convert an Oracle Application Express 3.1 package export (or page export) to 3.0 automatically! Just in case you developed an application in 3.1, but need to install it in a 3.0 environment. http://www.web-backlinks.com/convert-oracle-apex3.1-package-to-3.0.asp Enjoy!
ASP
Accessing a Web Page Requiring NLTM Authentication Through ASP MSXML2.ServerXMLHTTP Object
Have you ever “scraped” web page contents using the following code: <% Set xml = Server.CreateObject(“MSXML2.ServerXMLHTTP”) ‘ Opens the connection to the remote server. xml.Open “GET”, “http://www.somedomain.com”, False xml.Send v_response = xml.responseText response.write v_response Set xml = Nothing %> To your suprise, the web page content returned the following: In […]
Programming Alternative to Captcha on an ASP Web Form Using a Hidden Variable
Hands up who thinks “captcha”, an image based challenge-response test to ensure a response is not generated by a computer, is a big pain in the butt and you’re sick and tired of seeing it in every web form. Not only is it obstructive but most of the images are […]