CGI.pm annoying xhtml rendering

Ask a Question related to PERL Modules, Design and Development.

  1. #1

    Default CGI.pm annoying xhtml rendering

    Hello,

    when creating a form with CGI.pm, no matter if it is
    use CGI;
    $q = new CGI qw /:all -debug/;
    print header and start the html etc..

    print $q->start_form; OR
    print $q->start_multipart_form();
    print $q->textfield('blah');
    print $q->end_form;
    #etc..

    it *always* returns an obsolete trailing empty useless HTML
    "<div></div>" container before the closing tag of the form.

    Any ideas ? It seems not to be
    a known issue.

    (Perl5.8.1 on linux i386/ multi-thread-whatever)


    FrankB Guest

  2. Similar Questions and Discussions

    1. rendering <div Oops! rendering div style:display=none
      The default for a certain page I'm working on is to hide a section of the page when it's loaded. So i set a div tag as follows: <div...
    2. 11.0.2. Always this annoying bug !
      Hi, When you start Freehand and the panels are disappeared, neither the shortcut F4 nor the menu View Panels helps. You have to go to Windows...
    3. Annoying IE clicking
      Hi, I know this is slightly off topic, but I have a PHP script that displays the network status of various machines on my network, which...
    4. annoying popups
      Please, help with the popups that are always poppingup. I spoke with a co-worker she said it's a windows XP problem. I did e-mail MSN they told me...
    5. Annoying Pop Ups.
      How can I stop those annoying popups that come on my screen even when my browser is closed? It is crazy!!
  3. #2

    Default Re: CGI.pm annoying xhtml rendering

    FrankB wrote:
    > Hello,
    >
    > when creating a form with CGI.pm, no matter if it is
    > use CGI;
    > $q = new CGI qw /:all -debug/;
    > print header and start the html etc..
    >
    > print $q->start_form; OR
    > print $q->start_multipart_form();
    > print $q->textfield('blah');
    > print $q->end_form;
    > #etc..
    >
    > it *always* returns an obsolete trailing empty useless HTML
    > "<div></div>" container before the closing tag of the form.
    >
    > Any ideas ? It seems not to be
    > a known issue.
    >
    > (Perl5.8.1 on linux i386/ multi-thread-whatever)
    >
    >
    Not for me, even passing the arguments to "new" (which I don't think do
    what you think they do). Is your CGI up to date? I'm running

    Perl 5.8.6 on darwin; CGI version 3.17.

    Tom Wyant
    harryfmudd [AT] comcast [DOT] net Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139