I want to copy a Word Document from my Windows NT web Server to an Info Server:
<cflock name="theLock" type="EXCLUSIVE" timeout="30">
<cffile action="copy" source="C:\theDoc.doc" destination="\\\infoServer\theDirectory\">
</cflock>
I keep getting error message:
The cause of this exception...
Thanks it works.
Another issue is when I copy a 1 mb Access Database from the workstation to an Info Server it does copy over but the prompt doesnt end. It just sits there even after the copy is complete. I assume if I copy a .mdb file it is more involved and there are many parts to copy...
I dont have access to File::Copy on my Workstation so I am doing my File Copy manually.
This works:
use strict;
my $listFile = "C:\\First.txt";
my $listFile2 = "C:\\Second.txt";
open(LIST, $listFile) || die "Cant open $listFile : $!";
while(<LIST>)
{
system("copy $listFile $listFile2");
}...
Thanks,
It seems now the Lan wont work from the workstation to the web server due to security issues. But I can manually copy the database from the web server to this workstation with no problems. I was wondering how I can automatically copy this database from the web server to this...
I have a workstation that does not have internet capability and I need to create a form to just search information on an Access 2000 database sitting on our web server.
I already created the form but how do I connect this to the database on the web server?
Please advise if this can be done and...
I would like to make a page go somewhere else if someone refreshes the page.
Please advise how I can do that.
This is an action page that should not be refreshed and want to make sure if it is refreshed it will go to another web page.
I assume this is just an ongoing issue with only Cold Fusion handling the Word characters or do other SSL have the issue?
“test of word quotes”
• Test of bullet
Thanks,
It now works but the format doesnt always look exactly the same as the copied version from Word.
Is it correct to advise users that Bullet formatted info or any info copied from Word to the Web page might not always show or format the same way as it did on the original Microsoft...
Its sometimes comes from a Word Document and copied over into my Form so I assume it should not show up as <ul><li> tags saved in the record?
In the database it shows the bullet with a square character next to it.
Please advise the best way to preserve bullets entered into my CF MX 6.1 web site using Access 2000 Database.
Example of user entry into Form:
item 1
item 2
Result on my View Record Web page:
item 1
item 2
Form preview page that the variable is coming from:
<input...
After someone uses a link it changes color.
How can I keep the original blue color on the link after someone has clicked on it?
Basically keep the link color always blue even if it has been used or not.
Is this the right direction and if so what goes in the style part??
<style>...
Any way to write something to find out if local Mailto has been disabled?
Currently if the local OS has been disabled from sending mail for Outlook I get an error message from the OS saying "could not perform this command" after clicking on the mailto link.
I want to put my own message out...
Thanks I tried it without encryption but it kept giving me errors about parameters not being correct:
<!--- default value for sorting variable --->
<cfparam name="url.sort" default="names ASC, city ASC","QuerySort")">
<!--- query to sort, 'order by' used url variable to determine sort order...
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.