Forum: ColdFusion 14 Days Ago |
| Replies: 1 Views: 284 Re: Where to purchase Honestly, there are a lot of legal and logistic issues with setting up your own newsletter app (blacklists, spam laws etc...).
A quick Google search returned these results (can't vouch for how well... |
Forum: ColdFusion 23 Days Ago |
| Replies: 4 Views: 584 |
Forum: ColdFusion 28 Days Ago |
| Replies: 4 Views: 584 Re: insert loop One thing to check is to cfdump the form structure and make sure that the data from the form is correct.
<cfdump var="#form#">
Do you have any <cfset> statements that could be over-writing the... |
Forum: ASP.NET 29 Days Ago |
| Replies: 2 Views: 176 |
Forum: ASP.NET 30 Days Ago |
| Replies: 2 Views: 176 |
Forum: ColdFusion Apr 10th, 2008 |
| Replies: 1 Views: 440 Re: survey code not working The group attribute of cfquery is one of the most unknown and under-appreciated pieces of the entire language. It's so incredibly simple to use it's a wonder more people aren't told about it.
I... |
Forum: ColdFusion Apr 10th, 2008 |
| Replies: 2 Views: 551 Re: Automate undisabled a “submit button”? You need to use a javascript function for this:
function ChangeButtonStatus()
{
if (document.getElementById("Text").value.length > 0)
{
document.getElementById("submit").disabled =... |
Forum: ColdFusion Apr 3rd, 2008 |
| Replies: 1 Views: 431 |
Forum: ColdFusion Mar 31st, 2008 |
| Replies: 2 Views: 763 Re: <cfinput type="checkbox"> Validation You need to specify a value for each one.
For instance:
<cfinput type="checkbox" name="gender" value="Male" checked>
</label></td>
<td>Female</td>
<td><label>
... |
Forum: ColdFusion Mar 28th, 2008 |
| Replies: 2 Views: 618 Re: <cfquery> Undefined First of all, please don't name your query cool.recordCount. RecordCount is a property of the query object. Name it something like qryCool.
Secondly, you're missing a </cfif> tag. You have two... |
Forum: ColdFusion Mar 25th, 2008 |
| Replies: 2 Views: 458 Re: Remote Image Cache I'm not sure I understand what you're getting at.
You're storing thumbnail images on another server? That has nothing to do with CF. The CF server won't load the images, the client does. So... |
Forum: MS SQL Mar 25th, 2008 |
| Replies: 3 Views: 612 |
Forum: MS SQL Mar 24th, 2008 |
| Replies: 1 Views: 422 Re: Errors installing a database from a backup In the Restore Database window, on the Options screen, check the first option 'Overwrite the existing database'.
BTW, are you restoring from a .bak file? Or the .mdf? If you are restoring from the... |
Forum: MS SQL Mar 24th, 2008 |
| Replies: 2 Views: 510 Re: looping in SQL Server2005 Not sure if this is what you are looking for:
DECLARE tempCursor CURSOR FOR SELECT col3 FROM table1 WHERE col2 = @col2
OPEN tempCursor
DECLARE @value As int --or whatever your datatype is
FETCH... |
Forum: ColdFusion Mar 24th, 2008 |
| Replies: 1 Views: 504 Re: Using cfcheck! I'm not sure I understand what you are looking for. Can you please post some code? |
Forum: ColdFusion Mar 24th, 2008 |
| Replies: 1 Views: 459 |
Forum: ColdFusion Mar 18th, 2008 |
| Replies: 3 Views: 555 Re: cfloops Glad to help. Let me know if you have any other questions. |
Forum: ColdFusion Mar 18th, 2008 |
| Replies: 1 Views: 1,153 Re: Form with Image Link/Javascript Issue When you view the page in a browser, what's the source look like? Can you post that?
Also, have you checked to see if the GetProduct.ProductLink element has the data you need? You can do a cfdump... |
Forum: ColdFusion Mar 18th, 2008 |
| Replies: 3 Views: 555 Re: cfloops Are you outputting from a query?
If so you can use the group attribute of the cfoutput tag. Here's an example:
<cfoutput query="queryname" group="title">
#Title#
<cfoutput>
#SubTitle#<br... |
Forum: ColdFusion Mar 7th, 2008 |
| Replies: 1 Views: 755 Re: Undefined Element Error You may have already figured this out, but the first thing that comes to mind is that your query has been cached for 4 hours. Because it's a stored procedure and not an inline query, CF will not... |
Forum: ASP.NET Mar 7th, 2008 |
| Replies: 9 Views: 285 Re: Queryable Collections Thanks for the help. The method is only taking 14 hundredths of a second anyway, so I wasn't too worried about time savings. The way I'm doing it just seemed counter-intuitive. I kept telling... |
Forum: ASP.NET Mar 7th, 2008 |
| Replies: 9 Views: 285 Re: Queryable Collections Here's the whole function:
'Create default xml objects
Dim xmlQuestionnaireData As New XmlDocument()
Dim elForm As XmlElement
Dim elPage As XmlElement
Dim elPages As XmlElement
Dim elQuestionnaire... |
Forum: ASP.NET Mar 7th, 2008 |
| Replies: 10 Views: 438 Re: search data base Is the database hosted on the same network? If so, it's just a matter of connection strings. If it is not, and it's not publicly available across the internet, they need to have a web service... |
Forum: ASP.NET Mar 7th, 2008 |
| Replies: 2 Views: 213 Re: Search Text to Create Links Regular Expressions should do the trick for this.
//Find the quotation marks in the string
Regex regEx = new Regex("[\"]");
MatchCollection mc = regEx.Matches(string);
//Remove them
foreach (Match... |
Forum: ASP.NET Mar 7th, 2008 |
| Replies: 9 Views: 285 |
Forum: Community Introductions Mar 7th, 2008 |
| Replies: 7 Views: 198 |
Forum: ASP.NET Mar 6th, 2008 |
| Replies: 9 Views: 285 Queryable Collections Does anyone know how to create queryable collections in VB without using LINQ? I am working on creating a dynamic questionnaire system and need some help. Here's some background:
The system needs... |
Forum: ASP.NET Feb 29th, 2008 |
| Replies: 4 Views: 624 |
Forum: ASP.NET Feb 29th, 2008 |
| Replies: 4 Views: 624 |
Forum: Community Introductions Feb 28th, 2008 |
| Replies: 7 Views: 198 Greetings Hello everyone.
My name is Chris and I'm a C# developer switching to VB for a new job. I have about 8 years experience in Web Development with a strong background in SQL, as well as graphic... |
Forum: ASP.NET Feb 28th, 2008 |
| Replies: 3 Views: 469 |
Forum: ASP.NET Feb 28th, 2008 |
| Replies: 4 Views: 624 Problem using String.Format inside Request.Form I'm having trouble with finding a checkbox control on a page. I have a repeater that creates a list of items with checkboxes (so I can activate/deactivate them). The checkboxes are named as follows... |