Forum: ColdFusion Mar 5th, 2006 |
| Replies: 0 Views: 1,712 Using Regex in 'Extended Find' 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 ask if the... |
Forum: Windows NT / 2000 / XP / 2003 Feb 28th, 2006 |
| Replies: 1 Views: 6,260 Windows XP: Folder Options Gone ? 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: 17 Views: 12,785 |
Forum: ASP.NET Jan 19th, 2006 |
| Replies: 17 Views: 12,785 |
Forum: ASP.NET Jan 19th, 2006 |
| Replies: 17 Views: 12,785 Re: ASP.NET wizard control 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: 17 Views: 12,785 Re: ASP.NET wizard control 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 just... |
Forum: ASP.NET Jan 15th, 2006 |
| Replies: 17 Views: 12,785 Re: ASP.NET wizard control 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 of... |
Forum: ASP.NET Jan 13th, 2006 |
| Replies: 17 Views: 12,785 Re: ASP.NET wizard control 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: 17 Views: 12,785 Re: ASP.NET wizard control 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: 17 Views: 12,785 ASP.NET wizard control 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 29th, 2005 |
| Replies: 12 Views: 2,996 Re: Listbox Related Matter 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 26th, 2005 |
| Replies: 12 Views: 2,996 Re: Listbox Related Matter 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: 2,996 Re: Listbox Related Matter 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: 2,996 |
Forum: ASP.NET Dec 21st, 2005 |
| Replies: 12 Views: 2,996 Re: Listbox Related Matter 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: 2,996 Listbox Related Matter 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 into... |
Forum: ColdFusion Aug 28th, 2005 |
| Replies: 3 Views: 3,416 |
Forum: ColdFusion Aug 11th, 2005 |
| Replies: 3 Views: 3,565 Re: code error 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: 8,247 Re: hash symbol in a tag 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: 6,124 |
Forum: MS SQL Jul 21st, 2005 |
| Replies: 1 Views: 4,699 Select records from different data source 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: 5,478 |
Forum: ColdFusion Jul 19th, 2005 |
| Replies: 1 Views: 2,906 CF Scheduler 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: 6,124 Re: Go to next record 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: 4,189 |
Forum: ColdFusion Jul 7th, 2005 |
| Replies: 5 Views: 4,189 Re: Error Handling in CFSCRIPT 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: 4,189 Error Handling in CFSCRIPT 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: 2,794 |
Forum: JavaScript / DHTML / AJAX Jun 30th, 2005 |
| Replies: 2 Views: 1,801 Arguments of a function 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 component,... |
Forum: Java Jun 29th, 2005 |
| Replies: 10 Views: 1,464 Re: Could someone help please and thankyou 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: 5,831 |
Forum: HTML and CSS Jun 27th, 2005 |
| Replies: 2 Views: 5,831 Trigger onChange manually 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: 4,417 Re: Help with a search form/page 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 the... |
Forum: ColdFusion Jun 8th, 2005 |
| Replies: 2 Views: 3,065 Re: Trouble getting confirmation of authentication 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 enclose... |
Forum: ColdFusion Jun 8th, 2005 |
| Replies: 1 Views: 2,391 Re: Query Troubles 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 content... |
Forum: ColdFusion Jun 8th, 2005 |
| Replies: 6 Views: 6,124 Re: Go to next record 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: 6,124 Go to next record 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,140 Free web host with CF server 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,204 My revisit 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... |
Forum: Computer Science and Software Design Nov 8th, 2004 |
| Replies: 6 Views: 6,402 |