important HTML Formular question

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Clemens Richter

    important HTML Formular question

    Hello

    I need a Input field where a PIN number is entered. Then this Pin should be
    sent to my Application and it should be embedded into a few different <XML>
    Tags. How can I do this? Is there a String concatenation possible in HTML? I
    need to submit my Pin in the following format
    .....<enteredPI N>1234</enderedPin> whereas 1234 is my Input in the INputfield

    Someone an idea. Hope there is an easy way i dont wanna use Javascript

    Thanks


  • Peter Foti

    #2
    Re: important HTML Formular question

    "Clemens Richter" <sportfreund@gm x.at> wrote in message
    news:bogqpm$1e9 utf$1@ID-135917.news.uni-berlin.de...[color=blue]
    > Hello
    >
    > I need a Input field where a PIN number is entered. Then this Pin should[/color]
    be[color=blue]
    > sent to my Application and it should be embedded into a few different[/color]
    <XML>[color=blue]
    > Tags. How can I do this? Is there a String concatenation possible in HTML?[/color]
    I[color=blue]
    > need to submit my Pin in the following format
    > ....<enteredPIN >1234</enderedPin> whereas 1234 is my Input in the[/color]
    INputfield[color=blue]
    >
    > Someone an idea. Hope there is an easy way i dont wanna use Javascript[/color]

    Whatever is processing the form (CGI, ASP, PHP, etc.) should handle that.
    For example, if you are submitting to an ASP page, you could do:

    <%
    val = "<enteredPI N>" & Request.Form("m yInput") & "</enteredPIN>"

    ' Pass val to the Application
    %>

    Regards,
    Peter Foti


    Comment

    Working...