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...
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");
}...
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.
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...
The below sort works with just one field (names) but wont work when I put in another field (city) to sort on.
The one field attempt that works:
<!--- default value for sorting variable --->
<cfparam name="url.sort" default="#encrypt("names ASC","names")#">
<!--- query to sort, 'order by' used...
How can I output this method where I use a for loop to show all the fields:
Currently I am doing it this long way to get the Field info:
while (rs.next())
{
ResultsetMetaData rsmd = rs.getMetaData();
String myField1 = rsmd.getColumnName(1);
String myField2 = rsmd.getColumnName(2)...
I have a link where I was wondering how I can hide the ProjectID and LocationID on the reportPage.cfm URL.
After the link takes me to the reportPage.cfm it shows the ProjectID and LocationID in that page URL.
I dont want that info to show up in the URL.
Please advise how I can do that with a...
How do I add someones name to a group?
I am the owner (smith) of a directory called directoryA and want to add someone to the group name so they can write into the directory.
drwxrwsr-x 14 smith directoryA 5120 Dec 8 2005 .
For my MX 6.1 I am trying to validate a string input where information is required. The below is not working because it wont let any info into the field and keeps giving me the "Required Field" pop up message.
<cfinput validate="regular_expression" pattern="(!^\s*$)" name="firstname"...
I have Access 2000 as a Back end to my Cold Fusion Front end web application. Whenever users copy and paste Microsoft Word data that has quotes and ticks into the Cold Fusion web page, the ticks and quotes show up as squares in my database as if it doesnt translate correctly.
I know that...
I have an auto select in my Drop down where a selection takes the user to another page and it works.
Anyway to take the user to a specific part of the page where instead of it going to the top of the page it will take me to a specific part of the page?
<script>
function goToOtherPageMethod()
{...
I want to purchase SQL Server 2003 to locate on my IIS Web Server with Windows 2000.
Please advise the difference between Standard edition and the Enterprise edition?
I want to build many databases in the next couple years using SQL Server 2003 as a backend to my Cold Fusion and JSP Front end.
I have an output of three different possible values (in a multiple form select area) from my field value called location where the record output could be all of these three values: City, County, State.
State would be the highest level, then County and then City.
I need to set one Page Header...
I have dynamic output of data where each row has two checkboxes where only one should be checked per row. Not all the rows of checkboxes will be selected but if they do select a checkbox on a row only one can be selected. Since the names are different I cant use radio buttons and this is...
I have had major issues in the last two years with my Access 2000 database back end to my Front end Cold Fusion. Whenever someone copies Microsoft Word document information with quotes or apostrophes into my Web Form it translates to squares in the Access 2000 database. I understand I need to...
I have major problems with quotes or apostropes copied from either a Word document or a web browser giving me box characters on my Cold Fusion MX 6.1 web pages using Access 2000 database after my Updates or Inserts.
I can either use the ReReplace function to eliminate the characters or use the...
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.