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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. jbaywatch

    Hacking of asp post info

    Also, to touch on a issue that wasn't brought up by any previous replies... "Hacking" form posts are simple as pie. All you need is netcat or a telnet comand line. Basically, all that someone has to do is build manually build the request to your page by opening a connection to port...
  2. jbaywatch

    Do all ASP-capable servers have database functionality?

    I believe even NT4 comes with MDAC 1.5 out of the box. ADO is a part of MDAC, and is what s commenly used to "connect" a Database in ASP. - J
  3. jbaywatch

    ASP VBScript class

    Objects need Set and Get, properties, not Let's. - J
  4. jbaywatch

    Alpha sorting an array?

    Wow, not to be argumentative or disrespectful to anyone. But isn't both of those methods (XML and RS) a waste of server cycles? I just don't understand why anyone would go to such lengths as to spawn new processes to sort an array in a production environment. I would use the bubbleSort, XML...
  5. jbaywatch

    How do I create a session ID ...

    IF you are referring to the IIS SessionID, You can't just create one. When you leave the site to go to your CC processing site, your session is terminated. When you return IIS creates a new one. I see 2 ways to resolve your issue. 1) create a guid that you pass along every page via hidden form...
  6. jbaywatch

    RegExp Help!

    I thought the /g was used to specify to keep searching for substrings after the first match? I need to match all * + and - chars in a string. (So I can parse the field names out and add them together). This is my code, that doesn't work. //this would eventually add the values of form fields...
  7. jbaywatch

    Form Fields become disabled after Hiding Layers

    No, problem, it is a very strange issue. I have searched Hi and low for a resolution, but alas, none is to be had. netscape 4.x is just plain stupid. - Jason
  8. jbaywatch

    Form Fields become disabled after Hiding Layers

    I have a bunch of NS4 Layers, inside each layer is a form with a few fields. If the Layer is initialized as visible and kept visible everything is OK. AS soon as I hide a layer, and then make it visible again, certain element types become unFocusable. Radio, Checkbox and Form Buttons all...

Part and Inventory Search

Back
Top