Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by teamBadMonkey

  1. teamBadMonkey

    XML to Form data, redirect to another page

    What I ended up doing was requiring the site to POST the data to me (instead of XML, I was getting goofy BinaryRead errors), and I included my example.asp script in the target.asp script. target.asp: if request.querystring("externalSite") = 1 then ' example.asp now just does data validation...
  2. teamBadMonkey

    XML to Form data, redirect to another page

    that's the thing - it is never getting to target.asp. the HTML from example.asp is what's being returned to the calling site. i need the form to execute at the server and return the result of target.asp. unless, of course, there's another way to get this done. :)
  3. teamBadMonkey

    Validating Characters for Database using RegExp in a VBScript for ASP

    sorry, i realize now what you're asking. :( i replaced your pattern with: objRegEx.Pattern = "a" and it didn't work. i'm with you...not sure what's up.
  4. teamBadMonkey

    Validating Characters for Database using RegExp in a VBScript for ASP

    watch out, you're about to kick yourself. add this before End Function: dbSafe = Validate
  5. teamBadMonkey

    XML to Form data, redirect to another page

    it's not working the way i expected.... ** incoming xml stream ** <?xml version="1.0"> <root> <userID>xxxx</userID> </root> the XML is posted to example.asp ** example.asp ** ' parse incoming XML set objXML = Server.CreateObject("Microsoft.XMLDOM") objXML.async=false objXML.load(request)...
  6. teamBadMonkey

    XML to Form data, redirect to another page

    I was wondering if someone could help me out... I have an existing ASP file that uses Request.Form() data extensively. I'm writing an intermediate file because I need to tie in the ability to receive external XML data (via POST), parse it, then tie it to Form data objects so that the existing...
  7. teamBadMonkey

    Using Digital Certs

    I think I've got some more info to share. what works: logging onto production server as admin, using a browser to hit the target URL what doesn't work: using the ASP file from my home computer My hunch is that since I can log onto the server as admin and hit the site via the web browser, but...
  8. teamBadMonkey

    Insert Records before Delete

    If I ever have a bad SQL statement (errors on dbConnection.Execute strSQL line), I always add the debug line that Sheco showed - that will usually show you what's wrong right away. If you still don't see it, copy the query, go into Query Analyzer, and paste it.
  9. teamBadMonkey

    Using Digital Certs

    I've looked around, but haven't found much info on using digital certificates in ASP. My situation - I need to develop an interface to a remote server. They've issued a digital cert (a .p12 file) and I've installed it. I can put a URL into a browser on the production server -...

Part and Inventory Search

Back
Top