Forum: ColdFusion Mar 5th, 2006 |
| Replies: 0 Views: 2,208 Greetings.
Here, I'd like to search for any input tags in a specific folder.
I have this line:-
<input type([:space:]){0,1}=([:space]){0,1}("){0,1}text[^>|(style)]+width
I'd like to... |
Forum: ColdFusion Aug 29th, 2005 |
| Replies: 3 Views: 4,386 Where do you want to do the checking ?
Also, where can you get the username ? From the query ? |
Forum: ColdFusion Aug 11th, 2005 |
| Replies: 3 Views: 4,312 I'm not sure as I'm still a newbie with CF.
One suggestion: does it have to do with the different version of CF ? |
Forum: ColdFusion Aug 1st, 2005 |
| Replies: 2 Views: 9,998 Ok, when you try to load the cfm file, you'll see:-
Question #1 is: bla bla bla
If it's in a loop, you might see:-
Question #1 is: abc
Question #2 is: def
Question #3 is: ghi
and so on... ... |
Forum: ColdFusion Jul 22nd, 2005 |
| Replies: 6 Views: 8,182 |
Forum: ColdFusion Jul 19th, 2005 |
| Replies: 2 Views: 7,112 Hi. Is what you were asking something like this: http://daniweb.com/techtalkforums/thread25510.html |
Forum: ColdFusion Jul 19th, 2005 |
| Replies: 1 Views: 3,485 Hi. Say, I have a cf file which accepts real-time event and store the events in the same table with status "not sent".
I have scheduled a task to run at every 5 minutes to check if there is any... |
Forum: ColdFusion Jul 18th, 2005 |
| Replies: 6 Views: 8,182 Okay. I did something like this:-
<cfquery name="query1" datasource="mySource">
select * from users
</cfquery>
<cfset temp = ValueList(query1.username)>
<cfloop from="1" to=#ListLen(temp,... |
Forum: ColdFusion Jul 11th, 2005 |
| Replies: 5 Views: 5,699 It's okay :)
Still waiting for someone who could help me with this. |
Forum: ColdFusion Jul 7th, 2005 |
| Replies: 5 Views: 5,699 I meant, what can I use to throw errors inside functions.
<cfscript>
function foo(){
if(x == 0)
// throw error
}
</cfscript> |
Forum: ColdFusion Jul 4th, 2005 |
| Replies: 5 Views: 5,699 Greetings.
I would like to know if there's any way that I could throw errors within a cfscript block. I have checked the Coldfusion manual, but there are only the try and catch block stated, not the... |
Forum: ColdFusion Jun 13th, 2005 |
| Replies: 3 Views: 5,645 You could use iframe to do that, or XMLHTTP.
Those two are what I know, but for sure there are other alternatives.
With iframe, at the onchange of the first list, you call a jscript function.
In... |
Forum: ColdFusion Jun 8th, 2005 |
| Replies: 2 Views: 3,613 Hi, I'm new to CF as well but I hope this will be helpful.
Try using Session variables. When the user logs in, create a Session variable for him/her. Then, you may add an if-else statement to... |
Forum: ColdFusion Jun 8th, 2005 |
| Replies: 1 Views: 3,267 Hi, there. I tried the same concept with some tables in my database.
select distinct a.jid from
(select journals.id as jid, entries.id as eid, content as con
from journals, entries
where... |
Forum: ColdFusion Jun 8th, 2005 |
| Replies: 6 Views: 8,182 Hi, thanks for your reply.
I've figured out the solution. But, thanks a lot for the effort.
It'll serve as a good alternative. Thank you again. |
Forum: ColdFusion May 13th, 2005 |
| Replies: 6 Views: 8,182 I know that after doing a query, I can use cfoutput to output the results of the query by applying the query attribute like the one below:-
<cfquery name="query1" datasource="mySource">
select... |