Category Archives: ASP
Convert Oracle ApEx 3.1 Package Export to 3.0
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 … Continue reading
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 … Continue reading
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 … Continue reading