Re: Show / Hide table

2004-09-29 Thread Varun Garg
If you are talking about client side then use div tags and toggle visibity and innerHTML. to hide a div- div11.innerHTML=''; div11.style.display = 'none'; to show a div- div11.style.display = ''; div11.innerHTML=detailsString; where detailString contains the content to show. If its is server sid

Re: Load-on-startup init servlet

2004-10-05 Thread Varun Garg
MessageResources res = MessageResources.getMessageResources("ApplicationResources"); If you are using the property file name ApplicationResources in the root folder. In the init method of the servlet that you are loading at startup, you can do whatever you want. public void init(ServletC

Re: parameter passing to

2004-10-07 Thread Varun Garg
Use the a href and build the link manually or create an extension of the html:link tag. Thanks, Varun --- Phani <[EMAIL PROTECTED]> wrote: > I need to display all the elements in the map, the > key > & value pairs. Till here it's fine. > > Evrything works fine except the tag. > > When I click

Re: Interaction with .NET web service

2004-06-08 Thread Varun Garg
Use Axis... it will generate all the code that you need to connect to the .net web service, just get the wsdl from .net and use Axis to generate the code and use it. Varun --- Ciaran Hanley <[EMAIL PROTECTED]> wrote: > Hey, > > > > Is there an easy way for struts to interact with > .NET and we