search the articles directory
Powered by Google™
old articles in the directory
Here is the page where you can submit your articles and tutorials at web articles directory
Navigation: Home » Article submissions
Submission guidelines:
1) Please keep your article submissions on subject.
2) Each article submitted at web-articles.info must be unique-content. We do not publish duplicate content articles. Sorry!
3) Formatting:
a) Please submit all pieces in a Word document or HTML document, with no fancy formatting or fonts.
b) If you submit articles as HTML documents, start each paragraph of your article with the <p> tag.
c) You may use HTML tags in your article for embedded links and paragraphs. If you would like to submit your articles already formatted in HTML, send us an HTML document.
4) If you want to use a link to your website ( and I think you want ) use only ONE link.
5) Please include a short bio with your article submission. You may also include an email address to which you would like to have correspondence sent. You can use your e-mail as: mail at domain dot com.
6) Do not stuff your article with keywords. We do not want our articles directory to be a SEO place. We want to make a good information resource for our visitors.
7) Please title your article submission / tutorial submission. We may decide to change it at publication, but at least we'll have something off which we can work.
8) If your article submission is rejected, please don't stop sending. Acceptance depends on a variety of factors, including timeliness, style, and any number of editorial requirements of the moment that may not necessarily reflect on your writing ability. Anyway we will let you know why your article(s) was rejected.
9) Do not use words like "we're the best", etc...
That's basically it. We just ask that you please follow our easy guidelines before submitting to us.
Click here to submit your article!
You will be notified via e-mail where your article is located, as soon as it is approved.
Thank you for your understanding,
new articles in the directory
Recall that the validation error message read, A value must be entered for the USERNAME field. That happened automatically, and ColdFusion simply used the name of the form field that was being validated. It did uppercase the entire field name for us (we just used username), and the on-screen prompt does simply ask for USERNAME. Although it’s not really about validation per se, consider that some users may be confused by a ...
You may remember that Session variables are stored in memory, whereas Client variables are stored in a disk structure. The internal structure of the Session variables in memory is unimportant, but the options for storing Client variables deserve some discussion. By default, ColdFusion stores Client variables in the Windows Registry. As you can see, all the Client variables assigned to a given session are stored under a key that take...
Variables within custom tags exist in their own variable space, and the only way to share data back and forth between the calling page and the custom tag is by using the Attributes and Caller scopes. Request variables are available to all templates in a request, including custom tags, and are the best way to give custom tags access to global variables such as Request.MainDSN, Request.Username, and Request.Password. You should...
ColdFusion has more than 250 functions in its language. It has string-manipulation functions, array functions, structure functions, and many other types of functions. Even with this wide variety of functions, however sometimes you may want to define your own function that does things that the built-in ColdFusion functions can’t. This article does not describe how to use CFSCRIPT—only how to use CFSCRIPT in conjunc...
One of the great things about ColdFusion is its easy-to-use, tagbased syntax. Having the capability to intersperse CFML and HTML tags without needing to open and close script blocks or needing to remember what syntax you’re currently working in is a wonderful thing. At times, however, using a scriptable syntax would be nice—for example, if you’re doing heavy data processing on a page. As nice as CFML&rsqu...
Until now, you’ve created structures only by using StructNew(). You can also create structures just by using dot notation, as follows: <cfset aNewStruct.SomeKey.SomeValue = 1> That line creates a structure named aNewStruct with a substructure named SomeKey that has an element named SomeValue with a value of 1. Notice that the names of all newly created structures and keys are all uppercase, regardless of ...
Empty elements are elements within a list that contain no value. To see how to deal with them, take the following list: <cfset myList = “apple,pear,,orange,banana,”> How many elements are in myList? You’d think six, but ColdFusion’s list functions see only four because ColdFusion counts empty list elements—such as the one between pear and orange and the empty element at the end of ...