Forum: ColdFusion Mar 5th, 2006 |
| Replies: 0 Views: 2,188 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: Windows NT / 2000 / XP Feb 28th, 2006 |
| Replies: 1 Views: 9,260 As the title says, I can't seem to find the 'folder options' in File - Tools on my Windows Explorer anymore. I'm not sure when exactly it started and what caused it to disappear.
Also since I had... |
Forum: ASP.NET Jan 26th, 2006 |
| Replies: 18 Views: 17,452 Nice. Thanks. I'm trying to re-read and digest :d |
Forum: ASP.NET Jan 20th, 2006 |
| Replies: 18 Views: 17,452 Interesting... Would you mind sharing what's the basic steps needed to secure your web ? |
Forum: ASP.NET Jan 19th, 2006 |
| Replies: 18 Views: 17,452 Thanks a lot f1fan for the thorough explanation~!
I must say that I learned a lot from that reply lol.
Now I know what sql injection means - thanks a lot. |
Forum: ASP.NET Jan 17th, 2006 |
| Replies: 18 Views: 17,452 Wow, thanks for your thorough explanation.
All understood.
I will try that out.
Umm, I have another quick question here:-
I have been using the sqlDataSource control for about a week now but... |
Forum: ASP.NET Jan 15th, 2006 |
| Replies: 18 Views: 17,452 Thanks once again.
Umm, yeah, guess I need more information on the 2nd and 3rd options.
I'm not quite sure how it can be done but I have a rough idea here, did you mean that the form action tag... |
Forum: ASP.NET Jan 13th, 2006 |
| Replies: 18 Views: 17,452 Thanks for your fast response.
I have thought of doing the global class thingy that you have mentioned.
Then I thought it's quite inappropriate.
Alright, the scenario is this, from b.aspx.vb... |
Forum: ASP.NET Jan 12th, 2006 |
| Replies: 18 Views: 17,452 Ugghh sorry silly mistake :D
By the way, is it possible for one sub procedure in a.aspx.vb to call another sub procedure in b.aspx.vb ?
Thanks. |
Forum: ASP.NET Jan 12th, 2006 |
| Replies: 18 Views: 17,452 Greetings.
I encountered a problem in accessing the controls I placed inside the TemplatedWizardStep tag. Here's the code snippet:-
<asp:Wizard ID="wizCreateBulk" runat="server"... |
Forum: ASP.NET Dec 30th, 2005 |
| Replies: 12 Views: 4,139 Nah... tend to learn better with truthful words ;)
Btw, yup what you said is true. I used to be a Coldfusion developer, am still one. The reason I've got to move on to ASP.net for this particular... |
Forum: ASP.NET Dec 27th, 2005 |
| Replies: 12 Views: 4,139 Yup definitely tgreer.
I'm sure I'll be back with more problems lol.
But thanks for the prompt replies ;) |
Forum: ASP.NET Dec 23rd, 2005 |
| Replies: 12 Views: 4,139 Err, it's kinda difficult eh kev.
But here goes:-
File1.aspx:-
<asp:ListBox ID="Groups" runat="server" SelectionMode="multiple" width="250"/>
<script type="text/javascript">
... |
Forum: ASP.NET Dec 21st, 2005 |
| Replies: 12 Views: 4,139 Thanks a lot kev and tgreer. I'll try out the first option suggested and come back with a feedback ;) |
Forum: ASP.NET Dec 21st, 2005 |
| Replies: 12 Views: 4,139 Hey kev, thanks in advance.
Here's the function in javascript:-
function addOptionToListBox(lsVal, lsNam, obj) {
var anOption = document.createElement("OPTION");
... |
Forum: ASP.NET Dec 20th, 2005 |
| Replies: 12 Views: 4,139 Hi all,
I'm relatively new to ASP.NET - used to code in Coldfusion.
I've got this control created in a page <asp:listbox>.
I also have a javascript function in the same page to add listitems... |
Forum: ColdFusion Aug 29th, 2005 |
| Replies: 3 Views: 4,328 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,243 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,864 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,041 |
Forum: MS SQL Jul 21st, 2005 |
| Replies: 1 Views: 10,113 Can someone enlighten me on this issue ?
I have data source A - with a stored procedure in which I'd like to select records from tables in a different data source, B. |
Forum: ColdFusion Jul 19th, 2005 |
| Replies: 2 Views: 6,992 Hi. Is what you were asking something like this: http://daniweb.com/techtalkforums/thread25510.html |
Forum: ColdFusion Jul 19th, 2005 |
| Replies: 1 Views: 3,460 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,041 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,584 It's okay :)
Still waiting for someone who could help me with this. |
Forum: ColdFusion Jul 7th, 2005 |
| Replies: 5 Views: 5,584 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,584 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: HTML and CSS Jul 4th, 2005 |
| Replies: 2 Views: 3,489 What web programming language are you using? |
Forum: JavaScript / DHTML / AJAX Jun 30th, 2005 |
| Replies: 2 Views: 2,359 Greetings.
I encountered this little problem and am stuck. I don't know what should I google. I am developing a webpage with Coldfusion and I need to use some Javascript also.
I have a... |
Forum: Java Jun 29th, 2005 |
| Replies: 10 Views: 2,024 Hi, there.
What is the variable 'zero' supposed to be ?
Also, 'denominatorField' is a component, why do you compare a component with the variable 'zero' (I assume zero = 0). |
Forum: HTML and CSS Jun 28th, 2005 |
| Replies: 2 Views: 8,094 Thanks for your suggestion. I've made it to run.
Thank you again. |
Forum: HTML and CSS Jun 27th, 2005 |
| Replies: 2 Views: 8,094 Greetings. Please advise me on the following.
I have a select form element and have defined its onChange action.
I have another button, which when pressed opens up a new pop-up window. A value will... |
Forum: ColdFusion Jun 13th, 2005 |
| Replies: 3 Views: 5,548 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,591 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,199 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,041 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,041 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... |
Forum: Web Hosting Deals May 12th, 2005 |
| Replies: 1 Views: 2,850 Greetings.
Does anyone know of any Free web host that has CF server ?
I just wanted to try out my CF programming so, it doesn't have to be reliable or etc. Please advise. |
Forum: Community Introductions May 8th, 2005 |
| Replies: 2 Views: 1,532 Hello, people of daniweb.
It's been long since I last visit daniweb forum.
I was very busy for the past one year doing my final year in my CS degree.
Finally graduated and I remembered daniweb.
... |
Forum: Computer Science Nov 8th, 2004 |
| Replies: 6 Views: 9,729 |