Hi All,

I am sending a parameter with query request in this way:

<script>
function foo()
{
  url = "/LoanGeniusWeb/pricingQuoteDetail.do?";
  url += &object + 'abcd';
  document.quoteListForm.action = url;
  document.quoteListForm.submit();
}
</script>

Now instead of 'abcd' If I want to pass a collection of object.
How should I do it. I tried it by replacing 'abcd' with a collection.
But it seems this is the way of passing 'parameters' not 'attributes'.
So even if I pass a collection in this way I am getting string representation of 
collection, not the collection object.
How should I go about it.
Help please. thanx a lot

Imran.



Imran

Reply via email to