Re: File upload using AJAX

2006-01-27 Thread simmyana a
i need to upload a file using ajax
please help me to achieve this..

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230570
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


File upload using AJAX

2006-01-26 Thread simmyana a
Hi,
 how to upload a file using ajax/iframe in cf?
Thanks in advance

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230561
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


XML Error

2005-11-10 Thread simmyana a
Hi,
 I am getting XML parsing error: not well-formed  error while using cfwddx tag. 
I am using both my sql and ms as database. When i connect to mysql database it 
works fine but when i connect to ms sql it gives this error.
can anyone please help me to solve this problem

Thanks

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:223816
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


User Defined Functions in ColdFusion

2005-11-08 Thread simmyana a
Hi,
  I have created an UDF in MS sql and I want to use it in coldfusion while 
writing the query.
could you please tell me as how to use UDF of MS Sql in Coldfusion?

Thanks

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:223641
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: columnlist value

2005-09-26 Thread simmyana a
I can't use mysqldump as client wants an interface to select the tables.

I tried with the following code:

cfloop list=#selec.columnlist# index=columnname
 #selec[columnname][currentRow]#
/cfloop

but this will display one column name at a time, but i need to write something 
like this

Insert into table values (#id#,#name#)
any help would be appreciated


You'll need something like this:

cfloop list=#selec.columnlist# index=field
  #selec[columnList][currentRow]#
/cfloop

Though I'd recommend you use a dump/import rather than a SELECT/INSERT
mechanism to do it.  Be a lot faster, and probably easier on your
brain.  MySQL has a very nice 'mysqldump' utility that'll output your
data in raw format that is customizable up the wazoo, and then you can
just import that into SQL Server directly.

cheers,
barneyb

On 9/25/05, simmyana a [EMAIL PROTECTED] wrote:

--
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 100 invites.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219218
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


columnlist value

2005-09-25 Thread simmyana a
Hi,
  How can I dynamically get value of columnlist.
I need to port data from MySql to MS SQL DB. This is what I am trying to do;

cfset InsValueList=
cfquery name=getTables datasource=db1
  show tables
/cfquery

cfloop query=getTables

cfquery name=Selec datasourcedb1

Select * from #tablename#
/cfquery
cfset InsValueList=Selec.columnlist

cfset InsValueList=Replace(InsValueList,,,##,##Selec.,ALL)
cfset InsValueList=##Selec.  InsValueList  ##

cfoutput query=selec
  cfquery name=Selec1 datasource=#dbname# dbtype=query

INSERT INTO #tablename# values(#Evaluate(Selec.columnlist)#)
  /cfquery

/cfoutput

/cfloop

INSERT INTO #tablename# values(#Evaluate(Selec.columnlist)#), this doesn't 
work as it doen't evaluate column values
how can i get column values to insert the values into table

Thanks

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219216
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Dynamic Tree view in ColdFusion

2005-08-16 Thread simmyana a
please give me some idea as how to do it at the server side

I did a basic one and posted it. Look for TreeMonger in the MM Devex. One 
thing it is missing is -- if you deep-link into a page within the tree -- 
the freebie one does not open the tree out to match up with the current page 
(it does if you nav manually, of course). One of these days I will update 
the code to fix that, but even so this will get you light years closer to 
your solution. The placeholder stuff I mention isn't that hard to figure 
out.

HtH,

-- 
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com http://mysecretbase.com

On 8/4/05, Micha Schopman [EMAIL PROTECTED] wrote:


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215127
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Dynamic Tree view in ColdFusion

2005-08-16 Thread simmyana a
This is what i did, but i am unable to track the expanded subcategories

any help?



cfparam name=categoryids default=

InvalidTag language=javascript
/*function node(id)
{

window.location=testbgTreeview.cfm?id= + id;

} */

function submitform(id)
{
  document.myform.action=testbgTreeview.cfm?id= + id;
  document.myform.method=post;
  document.myform.submit();
}



/script
cfquery name=GetLevelOne datasource=#dbname#
Select * from bgcategory where categorylevel=0  order by categoryname
/cfquery


 
  
  cfset categoryids=
  
  cfif IsDefined('url.id')
cfif form.categoryids eq ''
cfset categoryids=#url.id#
cfelse
cfset categoryids=form.categoryids  ,  #url.id#
/cfif


  /cfif
 
  
 cfoutput#categoryids#/cfoutput
 form name=myform action=testbgTreeview.cfm method=post
cfoutput query=GetLevelOne
  table border=0
tr
td onClick=javascript:submitform(#categoryid#)img 
src=images/section_expand.gif#categoryname#/td
/tr
  /table

/cfoutput

cfif isdefined('url.id')

cfloop list=categoryids index=j

cfquery name=GetLevelOne datasource=#dbname#
Select * from bgcategory where 
supercategoryid=#url.id# and categoryid#url.id#  order by categoryid
/cfquery

cfoutput query=GetLevelOne
  table border=0
tr
cfif GetLevelOne.categorylevel gt 0
cfloop from=1 
to=#GetLevelOne.categorylevel# index=i
tdnbsp;/td
/cfloop
/cfif
td 
onClick=javascript:submitform(#GetLevelOne.categoryid#)img 
src=images/section_expand.gif#categoryname#/td
/tr
  /table

/cfoutput

/cfloop
/cfif


cfoutput
input type=hidden name=categoryids value=#categoryids#
/cfoutput
/form


Simmyana, 

What have you tried already to get things working, or do you have
examples on which we can comment on. Did you look at code examples,
documentation or something like that?

Micha Schopman
Project Manager

Modern Media, Databankweg 12 M, 3821 AL  Amersfoort
Tel 033-4535377, Fax 033-4535388
KvK Amersfoort 39081679, Rabo 39.48.05.380

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215130
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Dynamic Tree view in ColdFusion

2005-08-12 Thread simmyana a
as I need a dynamic tree, i don't think we can use flash here


 I built somthing like that in Flash using the Tree component and a 
 scrollpane to display lists of files. Last time I looked at it, though, 
 the Flash Tree component didn't support drag and drop, so I dropped 
 it.
 
  Hi,
  
 
  
  
 
  I need the code to display the items in a dynamic tree view pattern 
 
  similar to windows explorer. can anyone help me with this?
  
thanks

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214696
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Dynamic Tree view in ColdFusion

2005-08-12 Thread simmyana a
this is our table structure

ID | Name | Level | ParentId

is it possible to implement tree view using this data?



You are free to use

http://www.mschopman.demon.nl/treeview_v1.6.2/.

It lacks in documentation, but some of the methods can be found in the
previous version demo
http://www.mschopman.demon.nl/treeview_v1.6/treeview.html


Micha Schopman
Project Manager

Modern Media, Databankweg 12 M, 3821 AL  Amersfoort
Tel 033-4535377, Fax 033-4535388
KvK Amersfoort 39081679, Rabo 39.48.05.380



-
Modern Media, Making You Interact Smarter. Onze oplossingen verbeteren
de interactie met uw doelgroep. 
Wilt u meer omzet, lagere kosten of een beter service niveau? Voor meer
informatie zie www.modernmedia.nl 


-

-Original Message-
From: simmyana a [mailto:[EMAIL PROTECTED] 
Sent: vrijdag 12 augustus 2005 4:32
To: CF-Talk
Subject: Re: Dynamic Tree view in ColdFusion

client side widgetas our client is using CF5, we can't use recursive
function to display
any help would be appreciated


-
---
-
-
Modern Media, Making You Interact Smarter. Onze oplossingen verbeteren
de interactie met uw doelgroep. 
Wilt u meer omzet, lagere kosten of een beter service niveau? Voor meer
informatie zie www.modernmedia.nl 
---
-
---
-

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214700
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Dynamic Tree view in ColdFusion

2005-08-11 Thread simmyana a
client side widgetas our client is using CF5, we can't use recursive 
function to display
any help would be appreciated


Are you looking for a server control solution or a client side widget?

Micha Schopman
Project Manager

Modern Media, Databankweg 12 M, 3821 AL  Amersfoort
Tel 033-4535377, Fax 033-4535388
KvK Amersfoort 39081679, Rabo 39.48.05.380



-
Modern Media, Making You Interact Smarter. Onze oplossingen verbeteren
de interactie met uw doelgroep. 
Wilt u meer omzet, lagere kosten of een beter service niveau? Voor meer
informatie zie www.modernmedia.nl 


-
-Original Message-
From: simmyana a [mailto:[EMAIL PROTECTED] 
Sent: donderdag 4 augustus 2005 10:42
To: CF-Talk
Subject: Dynamic Tree view in ColdFusion

Hi,
  
  I need the code to display the items in a dynamic tree view pattern
similar to windows explorer. can anyone help me with this?

thanks

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214691
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Dynamic Tree view in ColdFusion

2005-08-04 Thread simmyana a
Hi,
  
  I need the code to display the items in a dynamic tree view pattern similar 
to windows explorer. can anyone help me with this?

thanks

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:213711
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


ColdFusion MX 6.1 default path

2005-06-06 Thread simmyana a
Hi,

  Recently, I reinstalled ColdFusion MX 6.1 and now it is taking IIS as the 
default web server. it does not seems to respond to  http://localhost:8500/;, 
if i specify http://127.0.0.1:8500/; it is taking the path, but fetching the 
files from C:\Inetpub, not from C:\CFusionMX folder. Kindly let me know as how 
to set the path to c:\CFusionMX folder.

Thanks

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:208650
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Running MS Access macro in Coldfusion

2005-05-24 Thread simmyana a
Hi,
  
  I have created a Macro in MS Access and when I try to run the macro in 
ColdFusion it is giving Undefined error.Is there any setting I need to change 
so that I can run the macro in CF? I would appreciate if anyone could help me 
out with this.

Thanks

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207622
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


cflogin Cookie

2005-05-12 Thread simmyana a
Hi,

   I have an application where I store data in a cookie and in the same page I 
have provided a link, which will redirect the user to a login page. I am using 
cflogin to authenticate the user. Problem is after user logs into the module 
cookie value set in the first page will be lost. is there any property need to 
be set in cfapplication tag to save the cookie value?

Thanks


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:206496
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: More than one datasource in cfquery

2005-05-10 Thread simmyana a
Thanks for the response

I am using MS access database. I tried using following 2 methods

1) 
cfset AppPath=C:\CFusionMX\odbc

cfquery name=sql1 datasource=somedatasource

Select d1.* From #AppPath#\DB1.mdb.TableName 
d1,#AppPath#\DB2.mdb.TableName d2 Where d1.id=d2.id

/cfquery

2)
cfquery name=sql datasource=datasource1

Select * from Table1
/cfquery

cfquery name=sql1 datasource=datasource2

Select * from Table2
/cfquery

cfquery name=c dbtype=query 
Select sql.*
From sql , sql1 
Where sql.id= sql1.id
/cfquery 

But performance wise first query is better


Thanks again for the help

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:206184
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: More than one datasource in cfquery

2005-05-10 Thread simmyana a
Thanks for the response

I am using MS access database. I tried using following 2 methods

1) 
cfset AppPath=C:\CFusionMX\odbc

cfquery name=sql1 datasource=somedatasource

Select d1.* From #AppPath#\DB1.mdb.TableName 
d1,#AppPath#\DB2.mdb.TableName d2 Where d1.id=d2.id

/cfquery

2)
cfquery name=sql datasource=datasource1

Select * from Table1
/cfquery

cfquery name=sql1 datasource=datasource2

Select * from Table2
/cfquery

cfquery name=c dbtype=query 
Select sql.*
From sql , sql1 
Where sql.id= sql1.id
/cfquery 

But performance wise first query is better

thanks again for the help

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:206188
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: More than one datasource in cfquery

2005-05-10 Thread simmyana a
Thanks for the response

I am using MS access database

I tried using both Query of Queries and Cross database query and both works 
well however performance wise Cross database query is better

Thanks again for the help

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:206193
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


More than one datasource in cfquery

2005-05-09 Thread simmyana a
Hi,

How to use more than one datasource in cfquery tag?

Thanks

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:206031
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Displaying records at particular time interval

2005-05-04 Thread simmyana a
Hi,
  i have a query which retrieves thousands of records from the database and it 
is very time consuming query.Is there a way to display few records at a 
particular time interval. say..if query retrieves about 25000 records, is there 
a way to display about 100 records at a particular time interval so that user 
need not have to wait for long time to view the information

I tried using cfflush but it is of not help...

Thanks

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:205633
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Datasource backup

2005-04-14 Thread simmyana a
Hi,
   How to take back up of all existing datasources and Scheduled tasks from CF 
Admin and how to restore it in other system?

I am using ColdFusionMX 6.1

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202747
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Weird problem

2005-04-12 Thread simmyana a
Hi,
 I am facing a strange problem in CF, one of my CFM files is missing from the 
server(if I set show hidden files property also, It is not displaying the file)
but it is displaying the file in the browser! Could anyone please tell me, how 
cfm files will get processed?

Thank you

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202379
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Link in the URL

2005-04-11 Thread simmyana a
Hi,
  Is there a way to check whether page has been opened using a a href link or 
directly typing the URL in the address bar?


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202148
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Opening a file with ## in the Filename

2005-04-06 Thread simmyana a
Thanks for the response
could you please tell me how to encode only special characters excluding the 
filename extension. when I use URLEncodedFormat(),it will display file name 
A27#.pdf A27%23%2Epdf.I want to retain the file extension.

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201665
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Opening a file with # in the Filename

2005-04-05 Thread simmyana a
Hi,
  I need to open a file with # in the file name. If i try to open it in IE 
using localhost path it is giving error as page not found. 
any help would be appreciated

Thanks

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201659
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Page time out problem

2005-04-04 Thread simmyana a
Hi,
   We are using a bulk mailing service, which takes about 5-6 hours to 
complete. At that time the page will display page cannot be found because of 
the browser time out. is there a way to display spooled messages(email id) at a 
regular time interval so that I can avoid time out?

Thanks

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201322
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Scheduled task

2005-03-21 Thread simmyana a
Hi,
  I need to set scheduled task to run at specific time intervals like at 11:00 
AM, 2:00 PM, 7:30 PM  at 11:00 PM. How can i set a single scheduled task to 
run at these timings

Thanks

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:199638
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Server Crash

2005-03-16 Thread simmyana a
I checked the log file, but I found nothing suspicious, it usually crashes at 
10:45 PM - 11:00 PM or 1:00 AM PST ,but yesterday it crashed at 7:00 AM PST 
also. We are unable to track the root cause for the crash 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:198922
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Server Crash

2005-03-16 Thread simmyana a
This exception log entry:

Error,jrpp-36,03/15/05,07:29:38,,File not found: /order.cfm The 
specific sequence of files included or processed is: 
C:\CFusionMX\wwwroot\order.cfm 
coldfusion.runtime.TemplateNotFoundException: File not found: /order.cfm
at coldfusion.filter.PathFilter.invoke(PathFilter.java:77)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:47)
at 
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:35)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:43)
at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)


Error,jrpp-36,03/15/05,07:32:06,,Error Executing Database Query.Timed 
out trying to establish connection The specific sequence of files included or 
processed is: C:\CFusionMX\wwwroot\edit.cfm 
coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error Executing Database 
Query.

around 7:30 server crashed

JVM Settings:

JVM Path :C:/CFusionMX/runtime/jre

JVM Arguments
-server -Dsun.io.useCanonCaches=false 
-Xbootclasspath/a:{application.home}/../lib/webchartsJava2D.jar 
-XX:MaxPermSize=128m -XX:+UseParallelGC


Maximum JVM Heap Size (MB) :512


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:198925
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Server Crash

2005-03-16 Thread simmyana a
Hi,

We have recently upgraded ColdFusion MX from 6.0 to 6.1 version, but after 
upgrading the server, server has become highly unstable, it is frequently 
crashing

any help would be appreciated

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:198920
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Imail Server

2005-02-07 Thread simmyana a
 In the command prompt I typed the following command: 
telnet ip address 25 
and it is displaying the Imail Server version in the screen, Does that mean it 
is recognizing the server??

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:193305
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Imail Server

2005-02-03 Thread simmyana a
Hi,
  Earlier we used to use Imail server with CFMX 6.0 to send mails, but after 
updating CFMX to 6.1, it stopped sending mails. I have no idea as how to set 
ColdFusion to use Imail Server.Please let me know as how to configure 
ColdFusion to use Imail Server. any help would be much appreciated.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:192857
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Imail Server

2005-02-03 Thread simmyana a
I tried giving the mail server IP  and I verified connection also. It is not 
giving any error. But when i try to send mail, it is giving the following error

Could not connect to SMTP host: localhost, port: 25;   nested exception is:
java.net.ConnectException: Connection refused

any idea??

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:192865
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


file name Undefined error

2004-12-09 Thread simmyana a
I am trying to pass name of the saved file to another page but it is giving 
filename undefined in javascript. this is my code

cfif isdefined('attach1')
cfset err1=
cfset err=false

cfif #attach1# is not 
CFFILE action=UPLOAD filefield=attach1 
destination=C:\CFusionMX\wwwroot\Topline\intranet\cpo\attachments 
nameconflict=MakeUnique
cfset SavedFile1 = #ServerFile#
cfelse
cfset SavedFile1 = 
/cfif
/cfif


html
head
titleUntitled Document/title
meta http-equiv=Content-Type content=text/html; charset=iso-8859-1
/head

body
form name=frm1 action=filetest.cfm method=post 
enctype=multipart/form-data
Attach1: nbsp; input name=attach1 type=file id=attach1 size=37

input type=submit name=Add value=Add
/form
cfif isdefined('err1')
cfif err  eq false 
cfoutput#SavedFile1#/cfoutput
cfset ex=GetToken(Savedfile1,2,.)
cfset fi=GetToken(Savedfile1,1,.)
cfoutput#fi#/cfoutputbr
cfoutput#ex#/cfoutput

script language=JavaScript

document.frm1.action = 
addu.cfm?Saved='+cfoutput#SavedFile1#/cfoutput+';

document.frm1.method = POST;
document.frm1.submit();
/script
/cfif
/cfif
/body
/html

Thanks

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186765
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


found the solution....

2004-12-09 Thread simmyana a
..

~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186767
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CFMX server is crashing

2004-11-18 Thread simmyana a
Our CFMX server is crashing quite offen once in 15 days or in a month.
I checked in the log, but i found no fault.
CFMX server was not fully down but retrival of page was dead slow.

After restarting the server  it is working fine...but i need to know the cause 
for the crash

Thanks
 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184842
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFMX server is crashing

2004-11-18 Thread simmyana a
CFMX 6.0

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184844
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


cache in cflogin

2004-09-04 Thread simmyana a
Hi,
How to clear the cached data on logout(cflogout) as it will store the data in cache when for the first time user logs into the system. I want to clear the cache so that each time when the user logs in it should executecfloginuser name=#cflogin.name# password=#cflogin.password# roles=#userRoles#/ tag
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




log file in cflogin

2004-08-31 Thread simmyana a
Hi,
I am trying to pass an entry into log file while authentication the user.
I am using cflogin tag for this
But only few times it records the entry. My code in application.cfm is like this,

cfapplication name=appname setclientcookies=yes

 cflock scope=application timeout=10 type=exclusive
 cfset application.physicalPath = C:\CFusionMX\wwwroot\test\

	
	cfset application.url = "">

/cflock


cfif IsDefined(action) and action EQ logout
	cflogout
	cfset message = You have logged out
/cfif	

cflogin
	cfif NOT IsDefined(cflogin)
		cfinclude template=login.cfm
		cfabort
	cfelse
		cfif cflogin.name IS  OR cflogin.password IS 
			cfset message = There was a problem with either your Login Name or Password.brPlease try again
			cfinclude template=login.cfm
			cfabort
		cfelse
			cfquery name=getlogin datasource=test
SELECT login, admin , sor
FROM members 
WHERE 
	login = '#cflogin.name#' 
	AND password = '#cflogin.password#'
			/cfquery 
			cfif #getlogin.RecordCount# GT 0
			
CFQUERY NAME=putlog DATASOURCE=test
INSERT INTO log (login,
tdate,
ttime,
type,			 referrer,
ip,
partno)
VALUES ('#getlogin.login#',
		'#dateformat(now())#',
		'#timeformat(now())#',
		'L',
		'#HTTP_REFERER#',
		'#REMOTE_ADDR#',
		' ')
			/CFQUERY 
			cfif getlogin.admin EQ Y
	cfset userRoles = user,admin
cfelse
	cfset userRoles = user
/cfif 
			cfloginuser name=#cflogin.name# password=#cflogin.password# roles=#userRoles#/
			
			cfelse
cfinclude template=login.cfm
cfabort
			/cfif
		/cfif
	/cfif
/cflogin

Thanks in advance
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Warning Page Expired problem

2004-08-31 Thread simmyana a
Hi, 
My client is facing 'Warning: Page Expired' problem when they click back button, i have put cfheader tag at the top of the page to cache it and it is working fine at my end, is there any other issues that need to be addressed??
thanks
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Both Plain Text and HTML in cfmail

2004-08-27 Thread simmyana a
but my client is not using that...theyhave 6.0 version

Upgrade to 6.1, it's free, faster and more stable.
 
 
-Original Message-
From: simmyana a [mailto:[EMAIL PROTECTED] 
Sent: 27 August 2004 05:09
To: CF-Talk
Subject: Re: Both Plain Text and HTML in cfmail



I am using Cold Fusion v. MX 6.0 which does not support cfmailpart tag

_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Sendinf Plain Text and HTML with cfmail

2004-08-26 Thread simmyana a
Hi,
i want to send both plain text and HTML in a mail. I searche dthe web and found the following code

 cfset boundary = CreateUUID() 
 cfmail to=[EMAIL PROTECTED] from=[EMAIL PROTECTED] subject=test server=localhost 

cfmailparam name=Content-Type value=multipart/alternative; boundary=#boundary# 
--#boundary# 
Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit This is the plain text message for the email.

 --#boundary# 

Content-Type: text/html; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable 

 html
head
	 titleHTML Message/title
 /head 
 body 
 This is the HTML text message for the email. 
/body 
/html 
 --#boundary#-- 
/cfmail 

but it is sending blank mail. can anyone help me with this please
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Sendinf Plain Text and HTML with cfmail

2004-08-26 Thread simmyana a
Hi,
i want to send both plain text and HTML in a mail. I searche dthe web and found the following code

 cfset boundary = CreateUUID() 
 cfmail to=[EMAIL PROTECTED] from=[EMAIL PROTECTED] subject=test server=localhost 

cfmailparam name=Content-Type value=multipart/alternative; boundary=#boundary# 
--#boundary# 
Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit This is the plain text message for the email.

 --#boundary# 

Content-Type: text/html; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable 

 html
head
	 titleHTML Message/title
 /head 
 body 
 This is the HTML text message for the email. 
/body 
/html 
 --#boundary#-- 
/cfmail 

but it is sending blank mail. can anyone help me with this please
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Using both Plain Text and HTML in cfmail

2004-08-26 Thread simmyana a
Hi,
i want to send both plain text and HTML in a mail. I searche dthe web and found the following code

 cfset boundary = CreateUUID() 
 cfmail to=[EMAIL PROTECTED] from=[EMAIL PROTECTED] subject=test server=localhost 

cfmailparam name=Content-Type value=multipart/alternative; boundary=#boundary# 
--#boundary# 
Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit This is the plain text message for the email.

 --#boundary# 

Content-Type: text/html; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable 

 html
head
	 titleHTML Message/title
 /head 
 body 
 This is the HTML text message for the email. 
/body 
/html 
 --#boundary#-- 
/cfmail 

but it is sending blank mail. can anyone help me with this please
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Both Plain Text and HTML in cfmail

2004-08-26 Thread simmyana a
Hi,
i want to send both plain text and HTML in a mail. I searche dthe web and found the following code

 cfset boundary = CreateUUID() 
 cfmail to=[EMAIL PROTECTED] from=[EMAIL PROTECTED] subject=test server=localhost 

cfmailparam name=Content-Type value=multipart/alternative; boundary=#boundary# 
--#boundary# 
Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit This is the plain text message for the email.

 --#boundary# 

Content-Type: text/html; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable 

 html
head
	 titleHTML Message/title
 /head 
 body 
 This is the HTML text message for the email. 
/body 
/html 
 --#boundary#-- 
/cfmail 

but it is sending blank mail. can anyone help me with this please
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Both Plain Text and HTML in cfmail

2004-08-26 Thread simmyana a
Thanks for the help but link is not working

 Hi,

 i want to send both plain text and HTML in a mail. I searche dthe web 
 and found the following code
 

 
 cfset boundary = CreateUUID() 

 
 cfmail to=[EMAIL PROTECTED] from=[EMAIL PROTECTED] subject=test 
 server=localhost 
 

 cfmailparam name=Content-Type value=multipart/alternative; 
 boundary=#boundary# 

 --#boundary# 

 Content-Type: text/plain; charset=iso-8859-1 
 Content-Transfer-Encoding: 8bit This is the plain text message for the 
 email.
 

 
 --#boundary# 
 

 Content-Type: text/html; charset=iso-8859-1 
 Content-Transfer-Encoding: quoted-printable 
 

 
 html

 head
 	 titleHTML Message/title
 
 /head 
 
 body 
 
 This is the HTML text message for the email. 

 /body 

 /html 

 
 --#boundary#-- 

 /cfmail 
 
 but it is sending blank mail. can anyone help me with this 
please
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Both Plain Text and HTML in cfmail

2004-08-26 Thread simmyana a
yeah that link is working but i am also facing the same problem 
and i am using 
Windows 2000 Server 
Cold Fusion v. MX 6.0

any help??

http://tinyurl.com/625zp... does that work?
 
-- 
dc
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Both Plain Text and HTML in cfmail

2004-08-26 Thread simmyana a
I am using Cold Fusion v. MX 6.0 which does not support cfmailpart tag

Any reaason you're not using the built-in cfmailpart tags?
 
cfmail from= to= subject= charset=UTF-8
cfmailpart type=text wraptext=74

/cfmailpart
cfmailpart type=html

/cfmailpart
/cfmail

-Original Message-
From: simmyana a [mailto:[EMAIL PROTECTED] 
Sent: 26 August 2004 11:51
To: CF-Talk
Subject: Re: Both Plain Text and HTML in cfmail


yeah that link is working but i am also facing the same problem 
and i am using 
Windows 2000 Server 
Cold Fusion v. MX 6.0

any help??

http://tinyurl.com/625zp... does that work?
 
-- 
dc 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]