• 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

calling a servlet from html

 
Ranch Hand
Posts: 518
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am having a html form which consist of two frames.In one frame,one html file is called and in another frame the other html file is called.i that html, i need to call the servlet .I had given the tag like this

But i am getting a blank page.
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
When are you getting a blank page? The page you posted above will of course be blank, since it contains no elements that would have a visual appearance.

As an aside, how were you planning on submitting the form, seeing that there is no submit button?
[ May 07, 2008: Message edited by: Ulf Dittmer ]
 
best scout
Posts: 1294
Scala IntelliJ IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi preethi,

what do you think this page should display? There's nothing but an empty form tag in your HTML body, so there really is nothing to display for the browser. If you don't have some form elements to collect the data you want to transmit to your form action servlet there won't happen anything.

Or did I get you wrong with this question?

Marco
 
reply
    Bookmark Topic Watch Topic
  • New Topic