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...
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...
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
I would like to transform some original XML that doesn't quite work in HTML using this XSL:
<xsl:template match="* | text() | @*">
<xsl:copy>
<xsl:apply-templates select="@*"/>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
<xsl:template...
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("Microsoft.XMLDOM")) to...
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...
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...
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 "files"), perhaps with a different extension, like .ase...
There is no straight conversion between ASP and JSP that I know of; they're fundamentally different technologies (languages at least). HOWEVER, you can "package" up an ASP site into one "compiled" COM object using http://xde.net/products/product_asp2dll.htm Monte Kalisch...
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...
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
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 "standalone" version of your ASP/Web application, then you'll have much trouble without...
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
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
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.