Whatever message this page gives is out now! Go check it out!
GetPageContext() |
GetPageContext().include("hello.jsp?name=Bobby"); === |
<cfset myscope = "server">
<cfset myserver = StructGet(myscope)><!--- This example shows using the page context to set a page
variable and access the language of the current locale. --->
<cfset pc = GetPageContext()>
<cfset pc.setAttribute("name","John Doe")>
<cfoutput>name: #variables.name#<br></cfoutput>
<cfoutput>Language of the current locale is
#pc.getRequest().getLocale().getDisplayLanguage()#</cfoutput>.