Results 1 to 3 of 3

Thread: HTML Tags werden vor Formularen angezeigt

  1. #1

    HTML Tags werden vor Formularen angezeigt

    Ich verwende für Formulare sowie für Tabellen etc. eigentlich grundsätzliche HTML Formulare. Die erstelle ich mit

    Code:
    Var form As New CHtmlForm();
    Danach füge ich dem Formular Text, Buttons etc. hinzu und zum Schluss kommt noch ein
    Code:
    form.Add('Text');
    .
    .
    .
    Response.Add(form);
    Nun werden mir beim Aufruf des Portals immer noch HTML-Tags am Anfang jedes Formulars angezeigt. Das sieht dann etwa so aus:

    < class="" title="" id="">
    < action="?cr=3rXPOzQtjIPfraK8OdNLr3zsmaQOxsNALI0ZeS YDgpzLBa18dc91lILNaZS9TydSE3jght0c_2xDUkCYiPe6ebAt Pobkv3Y7LUDwYlnwNmP39s2mXhyHZwjuLUmEX94PX" name="" method="post" class="" title="" id="">Aktueller Kontostand von [-EntroX-] Königreich Khanid: 183

    Ich verwende übrigens Chrome. Hat jemand eine Idee was das Problem sein könnte?
    Last edited by SimonSlater; 23-02-2013 at 14:20.

  2. #2
    Schau dir mal Portale an z.B. das vom Ferg oder vom Föd. Da erscheint überall dieses "< class="" title="" id="">". Das ist schon länger so und wurde, meine ich, auch schpn gemeldet.

  3. #3
    Ich hab einen Workaround:

    Formulare statt mit
    Code:
    Var form As New CHtmlForm();
    folgendermaßen erstellen:
    Code:
    Var form As New CHtmlForm(New CScriptUrl());
    Dann tauchen die nicht mehr auf

Posting Permissions

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