例では、index.cfmの表示を希望していますhello
どうすればいいですか?Application.cfcでセッション変数を設定し、それをアプリケーションページから取得することは可能ですか?
Application.cfcの
<cfcomponent>
<cfset this.sessionManagement = true />
<cffunction name="onSessionStart">
<cfset SESSION.myVar = "hello">
</cffunction>
</cfcomponent>
index.cfmに
<html>
<head>
<title>Testing</title>
</head>
<body>
<cfoutput>#SESSION.myVar#</cfoutput>
</body>
</html>
私が発見したことしかし私はすべて、それが動作index.cfmにに
<cfinvoke component="Application" method="onSessionStart">
を追加するときページがリフレッシュされるたびに変数がオーバーライドされます。
それが解決策でした。 – John
duh。私はそれを逃したとは信じられません。 +1 –