ColdFusion

  Home  Data Warehouse  ColdFusion


“ColdFusion Interview Questions and Answers will guide us now that ColdFusion is a commercial rapid application development platform. Originally designed to make it easier to connect simple HTML pages to a database, by 2.0 had become a full platform that included an IDE in addition to a full Scripting Language. Current versions of ColdFusion, sold by Adobe Systems. ColdFusion primarily competes with PHP and ASP. Learn ColdFusion by this ColdFusion Interview Questions with Answers Guide”



24 ColdFusion Questions And Answers

21⟩ How can you set the Client Management?

We can enable & disable client management as well as we can configure How & Where client variables need to be store

1. In the Application.cfc initialization code

This.clientmanagement="True" / "false"

This.clientStorage="[Ur_datasource_name]" / "registry" / "cookie"

2. In appliation.cfm using <cfappliaction> tag attributes

clientManagement="yes" / "no"

clientStorage="[Ur_datasource_name]" / "registry" / "cookie"

[Ur_datasource_name] - Stored in ODBC or native data source. You must create storage repository in the Administrator.

registry - Stored in the system registry.

cookie - Stored on client computer in a cookie. Scalable. If client disables cookies in the browser, client variables do not work.

 211 views

23⟩ What is the working process for Application.cfm?

Yes. If the application page directory does not have an Application.cfm page, ColdFusion searches up the directory tree until it finds an Application.cfm page. If several directories in the directory tree have an Application.cfm page, ColdFusion uses the first page it finds. If the Application.cfm page is present in the directory tree (and has the required permissions set), you cannot prevent ColdFusion from including it.

ColdFusion processes only one Application.cfm page for each request. If a ColdFusion page has a cfinclude tag pointing to an additional ColdFusion page, ColdFusion does not search for an Application.cfm page when it includes the additional page.

 206 views