Question
Hi, what is the equivalent of Java request in Coldfusion?
Hi, what is the equivalent of Java request in Coldfusion?
Take for example, in java I'd have a doGet that has a request and response object. Then I can do:
request.setAttribute("name", "John");
RequestDispatcher rd = request.getRequestDispatcher("login.cfm");
rd.foward(request, response);
What is the Coldfusion equivalent of this? I've looked at some Coldfusion docs but I don't seem to understand it too well
Thanks so much,
C
Take for example, in java I'd have a doGet that has a request and response object. Then I can do:
request.setAttribute("name", "John");
RequestDispatcher rd = request.getRequestDispatcher("login.cfm");
rd.foward(request, response);
What is the Coldfusion equivalent of this? I've looked at some Coldfusion docs but I don't seem to understand it too well
Thanks so much,
C