Search:

Type: Posts; User: sarithahere528; Keyword(s):

Search: Search took 0.00 seconds.

  1. Answers
    1
    Views
    3,140

    Re: reg SUBMIT Button

    >>>>>> How to submit a form with out using SUBMIT button?
    on button u just call onclick() function
    eg : onclick="submit();"

    then in javascript
    function submit()
    {
    ...
  2. JavaScript Re: can we send request from javascript function to jsp/sevlet?

    document.forms[0].action="/acion.do";
    document.forms[0].submit();:)
  3. JavaScript Re: JavaScript form address field validations

    function checkAddress(sText)
    {
    var ok = "0123456789";
    var f=true;
    var Char;
    for (var i = 0;i<sText.length;i++)
    {
    Char=sText.charAt(i);
    if(ok.indexOf(Char) == -1)
    {
  4. Answers
    4
    Views
    3,799

    Re: servlet - struts

    In web.xml ur specifying the servlet name as

    <servlet>
    <servlet-name>action</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <init-param>
    ...
  5. Answers
    3
    Views
    6,478

    Re: when servlet get destroyed ?

    I think servlet will destroy only when server(application or web server) shutdown
Results 1 to 5 of 5
About us
Applying for a job can be a stressful and frustrating experience, especially for someone who has never done it before. Considering that you are competing for the position with a at least a dozen other applicants, it is imperative that you thoroughly prepare for the job interview, in order to stand a good chance of getting hired. That's where GeekInterview can help.
Interact