Forum: MS SQL 17 Days Ago |
| Replies: 5 Views: 455 You're right, peter_budo. I should have posted the code first time around. Anyway, here it is now
DECLARE @VisitType varchar(7) --The Visit Name with which tblWindows is to be updated
--DECLARE... |
Forum: MS SQL 27 Days Ago |
| Replies: 2 Views: 345 Thanks Scott, that was just what I was looking for. This was my first time working with loops in MS-SQL - very useful! |
Forum: MS SQL 28 Days Ago |
| Replies: 2 Views: 345 What is the best way to generate a set of dates based on today's date? Essentially, what I wanna do is:
1. Get Current Date
2. Populate a table with future dates 6 months apart and go up until I... |
Forum: ColdFusion Oct 16th, 2009 |
| Replies: 0 Views: 812 Hi all,
I have a form where my colleagues enter basic details about participants in a study. The 'action' attribute of the form takes the control to a 'validateForm.cfm' script where, as the name... |
Forum: MS SQL Sep 26th, 2009 |
| Replies: 8 Views: 431 Thanks Scott and Ramesh,
I guess the next thing for me to do is look into FTI - I have just started working on this DB, so I am not quite sure if there are any indexes at all in it! |
Forum: MS SQL Sep 25th, 2009 |
| Replies: 8 Views: 431 I am using MS-SQL 2005 DB. One of the tables in the DB, that I inherited, has gotten upto 37000 records. And it will go up by another 50k records soon. Does that make too much data for one table? The... |
Forum: ColdFusion Sep 14th, 2009 |
| Replies: 4 Views: 2,511 I just got back to this site and implementing the login feature again. There is something I am not doing correct. After 5 unsuccessful login attempts, a trigger in the DB flips the AccountStatus bit... |
Forum: ColdFusion Aug 27th, 2009 |
| Replies: 0 Views: 875 Does anyone here have experience using the Acunetix Web Vulnerability Scanner? I happened to use it on my site to check for vulnerabilities and found about 15 HIGH level ones - all of them with... |
Forum: MS SQL Aug 26th, 2009 |
| Replies: 1 Views: 425 I am using the SQL 2005 Express edition for SQL server. The database resides on another server and I connect to it from my machine through the object explorer. I have created a trigger to run certain... |
Forum: ColdFusion Aug 21st, 2009 |
| Replies: 3 Views: 1,289 In addition to what thesaintbug said, there is another thing you might need to change. Rather than 'Encrypting' passwords, the better option would be to Hash them. Hashing is a one-way process -... |
Forum: ColdFusion Aug 21st, 2009 |
| Replies: 4 Views: 988 In your form declare a hidden type input and set it to 'strPassword'
<input type="hidden" name="OldCode" value="<cfoutput>#strPassword#</cfoutput>" />
and then change the comparison <cfif> to... |
Forum: ColdFusion Aug 21st, 2009 |
| Replies: 4 Views: 988 I have only had a few minutes to look at the code and the problem I see is that the value in your text field is being compared with the NEW spamcode; not the one that is generated for the page that... |
Forum: ColdFusion Aug 6th, 2009 |
| Replies: 4 Views: 1,487 The text field values need to be stored using #ListGetAt(FORM.txtValue, getIDs.CurrentRow)# instead of just 'FORM.txtValue' |
Forum: ColdFusion Aug 5th, 2009 |
| Replies: 2 Views: 1,128 Thanks buddylee17,
I am not sure why I did not think of those functions! :-O |
Forum: ColdFusion Jul 31st, 2009 |
| Replies: 2 Views: 1,128 I have a bunch of alphanumeric IDs for the data in my DB. The IDs may look like the foll:
0XAA001 or 1YBB010 or 2ZCC011 and so on.
Each of the 7 characters stands for something and therefore I... |
Forum: Graphics and Multimedia Jun 23rd, 2009 |
| Replies: 4 Views: 653 Wowww JasonHippy! That explanation deserves more than a few reputation points!! Thanks for the detailed description! |
Forum: Graphics and Multimedia Jun 22nd, 2009 |
| Replies: 4 Views: 653 Thanks fayola! Just the last part of my original query - What (if anything) do I need to check with the organization that hosts my website to make sure Flash works as expected? |
Forum: Graphics and Multimedia Jun 22nd, 2009 |
| Replies: 4 Views: 653 Hi all,
I am a complete newbie when it comes to Flash programming. I am basically a server-side programmer with more than enough knowledge of client-side technologies. However, Flash is something... |
Forum: ColdFusion Jun 18th, 2009 |
| Replies: 4 Views: 1,064 Actually, there are only 2 rows. So like the following:
Table:
Column 1, Column 2, Column 3, Column 4
Row 1
Row 2
What I want now is:
var 1 = Row1.Column3
var 2 = Row2.Column4 |
Forum: ColdFusion Jun 17th, 2009 |
| Replies: 4 Views: 1,064 Is there a way to grab data from alternate records in a ColdFusion query?
Essentially, what I am trying to do is this:
I am querying my database to grab some data. 2 rows of data are returned... |
Forum: HTML and CSS May 2nd, 2009 |
| Replies: 6 Views: 759 Thanks almostbob and sgweaver for your help. I am almost there and a little more experimenting with the CSS should get me through! |
Forum: HTML and CSS Apr 30th, 2009 |
| Replies: 6 Views: 759 Here's an example of a simpler 3-dropdown box form with which I am struggling with the positioning.
I wanna arrange the 3 drop down boxes next to each other, but their labels should be exactly... |
Forum: HTML and CSS Apr 29th, 2009 |
| Replies: 6 Views: 759 Hi,
I have a form that has a bunch of cascading drop downs - something like Country->State->City->. Each subsequent drop down is populated based on what is selected on the preceding one.
What I... |
Forum: MS SQL Apr 23rd, 2009 |
| Replies: 4 Views: 862 Woww... I missed an easy one there. Thanks Saion! |
Forum: MS SQL Apr 22nd, 2009 |
| Replies: 4 Views: 862 I have a table off which I need to parse out the data using certain criteria. The table contains 3 datetime columns called 'ReadingTakenOn', 'StartedOn', and 'StoppedOn'
Here's the criteria for... |
Forum: ColdFusion Mar 12th, 2009 |
| Replies: 0 Views: 1,355 Here's the problem:
One of my scripts allows users to upload MS-Excel files. When uploading the file, users are also required to enter details related to the file - details like start date, stop... |
Forum: ColdFusion Feb 12th, 2009 |
| Replies: 1 Views: 1,659 Could someone help me figure out how to disable user accounts in ColdFusion? What I am trying to achieve is this:
When a user makes 5 successive invalid attempts, his/her account will be temporarily... |
Forum: ColdFusion Feb 11th, 2009 |
| Replies: 4 Views: 2,511 Hi all,
All right, here's what I am trying to achieve but have no idea how to do it:
My site requires users to login and every page is password protected. As part of preventing hacking (to a... |
Forum: ColdFusion Jun 26th, 2008 |
| Replies: 0 Views: 1,068 Hey Guys,
I have just started working on ColdFusion, so I am relatively new to it than most of you may be. I am trying to create 'Sticky Stay-Filled' forms so that when the form is submitted, the... |