Help for this page

Select Code to Download


  1. or download this
    <form action="/goform/formHandlerConfigureDMPName" method="post" onsub
    +mit = "return validateDMPNameOnSubmit(this)">
            <td width="5%"><img src="../invis.gif" alt="" width="50" heigh
    +t="30"/></td>
            <td width="45%">DMP Name:</td>
            <td width="50%"><input type="text" name="DMPName" value="Curre
    +nt Name" maxlength="129"/>&nbsp;&nbsp;<input type="submit" value="App
    +ly"/></td>
    </form>
    
  2. or download this
    POST http://xxx.xxx.xxx.xxx/goform/formHandlerConfigureDMPName
      DMPName=Current Name           (text)
      <NONAME>=Apply                 (submit)
    
  3. or download this
    my $input_name = 'DMPName';
    my $web_url = 'http://xxx.xxx.xxx.xxx/DMP_config.asp';
    ...
    $current_form = $mech->form_with_fields($input_name);
    
    print "Present value of $input_name: " . $mech->value($input_name);