I'm a new comer to ColdFusion and am trying to convert CF web app to ASP.NET web app. We've Index.cfm
file and a template Manage.cfm
file. If a user clicks on a link in Index.cfm it opens a URL with something like http://localhost/index.cfm?t=Manage.cfm
. The template Manage.cfm is using a message <p>Year of Completion is : <cfoutput>#session.YearOfCompletion#</cfoutput>
Index.cfm
nor in Manage.cfm
I see a place where session.YearOfCompletion
or form.YearOfCompletion
value is set. Question: How then template is getting #session.YearOfCompletion# value in the output? It seems I'm missing something.