Value assignment to html:hidden field...

2003-09-25 Thread Abhijeet Mahalkar
how can we assign the JSP value to the hidden field code is as follows String date = session.getValue(BussinessDate); this date variable i want to assign to following field... html:hidden property=txtBusidate width=15 size=25 maxlength=25 / will this work ? html:hidden value = %=date %

Re: Value assignment to html:hidden field...

2003-09-25 Thread Adolfo Miguelez
[EMAIL PROTECTED] Subject: Value assignment to html:hidden field... Date: Thu, 25 Sep 2003 15:09:16 +0530 how can we assign the JSP value to the hidden field code is as follows String date = session.getValue(BussinessDate); this date variable i want to assign to following field... html:hidden

Re: Value assignment to html:hidden field...

2003-09-25 Thread Abhijeet Mahalkar
thanks.. - Original Message - From: Adolfo Miguelez [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September 25, 2003 3:37 PM Subject: Re: Value assignment to html:hidden field... What about this? bean:define id=date name=BussinessDate scope=session/ html:hidden value

RE: Value assignment to html:hidden field...

2003-09-25 Thread Mainguy, Mike
: Thursday, September 25, 2003 5:39 AM To: Struts Users Mailing List Subject: Value assignment to html:hidden field... how can we assign the JSP value to the hidden field code is as follows String date = session.getValue(BussinessDate); this date variable i want to assign to following field

RE: Value assignment to html:hidden field...

2003-09-25 Thread Adolfo Miguelez
PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: RE: Value assignment to html:hidden field... Date: Thu, 25 Sep 2003 10:01:50 -0400 I personally would assign that value in the Action or somewhere else in the java code (even default it in the form bean perhaps), not in the jsp

RE: Value assignment to html:hidden field...

2003-09-25 Thread hari_s
to html:hidden field... thanks.. - Original Message - From: Adolfo Miguelez [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September 25, 2003 3:37 PM Subject: Re: Value assignment to html:hidden field... What about this? bean:define id=date name=BussinessDate scope=session