Implement XFORMS on ASP

Ask a Question related to ASP Components, Design and Development.

  1. #1

    Default Implement XFORMS on ASP

    Hi,

    I'm looking for a means to generate hundreds of ASP webforms using
    declarative language. I've put my attention on XFORMS.

    I understand that there is no support for XFORMS on ASP.NET, but I was
    wondering if anyone has made the excercise to develop an XFORM engine in
    ASP.NET.

    Best regards,
    Locusta Guest

  2. Similar Questions and Discussions

    1. XFORMS
      Hi, When specifying the skin='none' in the cfform how can i see the generated XML (XFORMS)? <cfform name='testXForm' format='XML' skin='none'> ...
    2. XForms ?
      Is it possible to use the cfform tag to proccess XForm XML written outside of coldFusion?
    3. Login using XForms
      I'm having problems with a login page. Every time I leave the protected page and return it makes me re-login. This did not happen with flash or html...
    4. xforms and xsl
      Hi, I was wondering it there a way to view the XML that the cfforms tags generate prior to being transformed by the XSL file that is automatically...
    5. Lyx and xforms!!
      Hi all, I have this problem: I have Redhat 7.3 installed and i'm trying to install Lyx. I downloaded lyx-1.3.2.tar.gz e I launched ./configure...
  3. #2

    Default Re: Implement XFORMS on ASP

    "Locusta" <Locusta@discussions.microsoft.com> wrote in message
    news:B54581A2-3B1E-49CD-83EB-C12C8555584C@microsoft.com...
    > Hi,
    >
    > I'm looking for a means to generate hundreds of ASP webforms using
    > declarative language. I've put my attention on XFORMS.
    >
    > I understand that there is no support for XFORMS on ASP.NET, but I was
    > wondering if anyone has made the excercise to develop an XFORM engine in
    > ASP.NET.

    XForms doesn't really have a place in the ASP.NET world. What are you
    gaining with a declarative XForm that you can't get even from a straight
    forward ASP.NET form?


    --
    Anthony Jones - MVP ASP/ASP.NET


    Anthony Jones Guest

  4. #3

    Default Re: Implement XFORMS on ASP

    Hi Anthony,

    Thank you for responding to my question.

    I need to create more than 3000 asp pages, mostly country and language
    specific changes. Creating the 3000 ASP pages is a huge task, and if one
    field needs to be added to the page, then I need to perform this 3000 times.

    I would like to achieve an AJAX combined webform, whereby a set of widgets
    is created (textbox, dropdown, ...) with all their specific functions. I was
    thinking to use the XFORM declarative language for this task.

    Do you have a better suggestion for this automation?

    "Anthony Jones" wrote:
    > "Locusta" <Locusta@discussions.microsoft.com> wrote in message
    > news:B54581A2-3B1E-49CD-83EB-C12C8555584C@microsoft.com...
    > > Hi,
    > >
    > > I'm looking for a means to generate hundreds of ASP webforms using
    > > declarative language. I've put my attention on XFORMS.
    > >
    > > I understand that there is no support for XFORMS on ASP.NET, but I was
    > > wondering if anyone has made the excercise to develop an XFORM engine in
    > > ASP.NET.
    >
    >
    > XForms doesn't really have a place in the ASP.NET world. What are you
    > gaining with a declarative XForm that you can't get even from a straight
    > forward ASP.NET form?
    >
    >
    > --
    > Anthony Jones - MVP ASP/ASP.NET
    >
    >
    >
    Locusta Guest

  5. #4

    Default Re: Implement XFORMS on ASP

    "Locusta" <Locusta@discussions.microsoft.com> wrote in message
    news:A9DA5DED-6E59-4AC3-9E80-18C3D9DECA2B@microsoft.com...
    > Hi Anthony,
    >
    > Thank you for responding to my question.
    >
    > I need to create more than 3000 asp pages, mostly country and language
    > specific changes. Creating the 3000 ASP pages is a huge task, and if one
    > field needs to be added to the page, then I need to perform this 3000
    times.
    >
    > I would like to achieve an AJAX combined webform, whereby a set of widgets
    > is created (textbox, dropdown, ...) with all their specific functions. I
    was
    > thinking to use the XFORM declarative language for this task.
    >
    > Do you have a better suggestion for this automation?
    >

    Yes. You need to get some reading done. ASP.NET has several solutions for
    'widgets', it has AJAX based solutions and it has a framework for handling
    localisationof resources.

    The thinking that a declarative language is a better solution to this
    problem than another approach confuses me.

    There two key things to overcome when you have forms in multiple languages.
    First, separating the displayed text from the actual form definition (.NET
    does this with culture specific resource files). Second, laying out the
    form in such a way that all various possible captions fit in the space
    provided.

    [url]http://msdn2.microsoft.com/en-gb/library/bb400852.aspx[/url]


    There are a number of walk throughs you might find useful like this one on
    localisation:-


    [url]http://msdn2.microsoft.com/en-gb/library/fw69ke6f.aspx[/url]


    --
    Anthony Jones - MVP ASP/ASP.NET


    Anthony Jones 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