---
title: "What is the difference between Custom tag and Coldfusion Component?"  
description: "What is the difference between Custom tag and Coldfusion Component?"  
author: "Anonymous User"  
published: 2011-11-04  
updated: 2020-09-23  
canonical: https://www.mindstick.com/interview/1324/what-is-the-difference-between-custom-tag-and-coldfusion-component  
category: "cold fusion"  
tags: ["cold fusion"]  
reading_time: 2 minutes  

---

# What is the difference between Custom tag and Coldfusion Component?

There are some basic difference in between Custom tag and Coldfusion Component in which some are as follows:\
\

- Custom tags have no formalized parameter passing and validation mechanism; CFCs (Coldfusion Component) do.

- Custom tags have a single entry point; CFCs can have multiple entry points. This makes it possible to create a single component that does many related actions.

- Custom tags are designed to contain code; CFCs are designed to contain both code and data.

- Custom tags are accessible only by Coldfusion and only locally; CFCs can be accessed as web services, opening up a whole new world of reuse possibilities.

## Answers

### Answer by Anonymous User

There are some basic difference in between Custom tag and Coldfusion Component in which some are as follows:\
\

- Custom tags have no formalized parameter passing and validation mechanism; CFCs (Coldfusion Component) do.

- Custom tags have a single entry point; CFCs can have multiple entry points. This makes it possible to create a single component that does many related actions.

- Custom tags are designed to contain code; CFCs are designed to contain both code and data.

- Custom tags are accessible only by Coldfusion and only locally; CFCs can be accessed as web services, opening up a whole new world of reuse possibilities.


---

Original Source: https://www.mindstick.com/interview/1324/what-is-the-difference-between-custom-tag-and-coldfusion-component

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
