• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Share Variables using Oracle Portal 10.1.3.3

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi, all im kind of new working with portals and portlets, and at my work we are using oracle portal, my question is, there's any way of share variables between pages within the same portlet, beacuse right now we do this by passing it as hidden fields to the other page

i mean

PageA

<form name="<%=Form1%>"
method="POST"
action="<%= UrlUtils.htmlFormActionLink(pReq,UrlUtils.PAGE_LINK) %>">
<%= UrlUtils.htmlFormHiddenFields(pReq,UrlUtils.PAGE_LINK, Form1)%>
<%= UrlUtils.emitHiddenField(HttpPortletRendererUtil.portletParameter(request, "next_page"),"/htdocs/myporlet/PageAjsp" ) %>
<input name="<%=field1%>" type="hidden" value="<%=field1value%>"/>
<input name="<%=field2%>" type="hidden" value="<%=field2value%>"/>
</form>

and i have to have the same on the second page,

any help will be greatly appreciated
reply
    Bookmark Topic Watch Topic
  • New Topic