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 wOOdy-Soft 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 montek

  1. montek

    PPTP,RAS,VPN connection error 619

    Was the Norton option on the client or the server? I am experiencing a similiar problem, which I'm thinking is partially firewall-related. It's a WinNT4/Sp6a server running RAS. A local Win2K server can create a successful VPN connection, but I cannot with a Win2K Pro at home. It hangs on...
  2. montek

    System call in asp

    Put the executable program into a directory. Enable execute permissions on the directory and then you can execute it directly. Be careful to NOT allow write access to this directory; otherwise, someone could write files here and execute them on your server. Bad. Monte Kalisch Brainbench MVP...
  3. montek

    Message board emails and the proper smtp service?

    If you setup the SMTP service in IIS, you can use it to send your emails. Monte Kalisch Brainbench MVP for ASP http://www.brainbench.com Anti-Spam Email: montek at montekcs dot com
  4. montek

    Comment out some code, but retain the original...

    I would like to transform some original XML that doesn't quite work in HTML using this XSL: <xsl:template match=&quot;* | text() | @*&quot;> <xsl:copy> <xsl:apply-templates select=&quot;@*&quot;/> <xsl:apply-templates/> </xsl:copy> </xsl:template> <xsl:template...
  5. montek

    Template Matching the Root Node

    I am trying some XSLT transformations and barely know what I'm doing. =) That being said, I have had some luck, but am having a problem (mostly with understanding) something specific. First off, I am using ASP (and the MS XML object: Server.CreateObject(&quot;Microsoft.XMLDOM&quot;)) to...
  6. montek

    ASP and NT Security

    NT Challenge/Response authentication will only work seemlessly if you are on a LAN or WAN that can actually authenticate you behind the scene. For instance, if you're on one network (say domainA) and there is some sort of trust relationship with domainB, then domainB can you (domainA\you) to...
  7. montek

    Where do I find an applet that draw grafics?

    There are lots of graphic packages available. My favorite is ChartFX because it's really easy to use. The best thing of all is you can throw an ADO recordset at it--and a chart it makes. There are several other packages, but they require significantly more intervention by you. Some require...
  8. montek

    Encrypt an asp page

    Yes, but you'd probably have to write your own COM object or ISAPI DLL to handle it and it would destroy performance on your web application. In theory, though, you could write an object that encrypts local files (or database &quot;files&quot;), perhaps with a different extension, like .ase...
  9. montek

    Encrypt an asp page

    There is no straight conversion between ASP and JSP that I know of; they're fundamentally different technologies (languages at least). HOWEVER, you can &quot;package&quot; up an ASP site into one &quot;compiled&quot; COM object using http://xde.net/products/product_asp2dll.htm Monte Kalisch...
  10. montek

    chat ASP application

    I highly recommend ChartFX Internet Edition 2000 from SoftwareFX. (www.softwarefx.com) It's extemely powerful and easy to use. You can just query a database and throw a recordset at it; can't get much better than that! It's not the cheapest thing out there, but I have found that the time...
  11. montek

    Get NT Usergroups withASP

    You might be able to use the ADSI interface to collect this information. Check out http://msdn.microsoft.com/library/psdk/adsi/adsiscript_7eyb.htm Monte Kalisch Brainbench MVP for ASP http://www.brainbench.com Anti-Spam Email: montek at montekcs dot com
  12. montek

    Working with asp pages without the presence of a Web server!

    Sure, you could use WSH to do some of the things you're talking about. I mean, both ASP and WSH use VBScript, but that doesn't make them similar in other areas. If your desired effect is to have a &quot;standalone&quot; version of your ASP/Web application, then you'll have much trouble without...
  13. montek

    Accessing the DSN Information

    That scares me. You'd better make certain you have the appropriate security in place before you allow this to happen. Monte Kalisch montek@montekcs.com http://www.brainbench.com
  14. montek

    Working with asp pages without the presence of a Web server!

    You will need to install IIS locally in order for ASP to run successfully. You cannot run .asp pages without a web server. Monte Kalisch montek@montekcs.com http://www.brainbench.com
  15. montek

    Problem with Datetime

    You need to specifically insert NULL instead of leaving it blank. I would bet that you have that database column set to some default, which is where you're getting this 1/1/1900 business. insert into myTable (myIDColumn, myDateTimeColumn) values (1, NULL) Monte Kalisch...

Part and Inventory Search

Back
Top