TH Lim wrote: > > Hi, > > Is there a way to know if a request is a POST or GET in WebPage? > > TQ >
is a post? return "POST".equals(((WebRequest)RequestCycle.get().getRequest()).getHttpServletRequest().getMethod()); Artur -- View this message in context: http://www.nabble.com/POST-or-GET-Request-tp18108556p18110501.html Sent from the Wicket - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
