1.

How To Use Clientmanagement In Application.cfm Page? Give An example?

Answer»

ClientManagement can be enabled and disabled as and when we need depending upon the requirement. 

  • In the Application.cfc initialization code This.clientmanagement="True" / "false"

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

  • In appliation.cfm using 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.

ClientManagement can be enabled and disabled as and when we need depending upon the requirement. 

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

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.



Discussion

No Comment Found