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...
...understanding) something specific.
First off, I am using ASP (and the MS XML object: Server.CreateObject("Microsoft.XMLDOM")) to process *part* of an SMIL document into HTML. The first thing I'm doing in ASP is grabbing a particular node and its subtree (because I don't want the...
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...
...default will be 20 minutes. So after 20 minutes of a user not contacting the server again, their ASP session will be removed. Of course, you can *force* the disconnect by calling Session.Abandon (via a logout button or something) just like RChan suggested.
Session.Abandon or the Session...
You're using FTP, not Front Page Extensions, right? And no modifications to global.asa??? No COM changes?? You should be okay.... Are your objects cleaning themselves up well? (set obj=nothing) Does it take about 20 minutes for the server to clear up (could be session-related)?
<p>Monte...
Well, first off, it's curious that you're using session to store form data. That's generally a bad practice. Use hidden form variables for data like that. Session variables are very resource intensive on your server and do not scale well. <p>Monte Kalisch<br><a...
Create a local variable, like SQL, to hold the SQL statement. That way, you print it out after you build it to make sure it's correct. There might be something strange going on. Ex:
SQL="insert into orders (itemnum, itemname, quantity, price, total) values ('" "key" &...
You need to loop through your return recordset. Look at the ADO documentation under .MoveNext
<p>Monte Kalisch<br><a href=mailto:montek@montekcs.com>montek@montekcs.com</a><br><a href=http://www.brainbench.com>Brainbench.com MVP for ASP</a><br>
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.