how to allow designer to design in frontpage and hit the same asp/aspx page

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default how to allow designer to design in frontpage and hit the same asp/aspx page

    My client wants to design ever changing forms in Frontpage and have them
    mailed in HTML format to her.

    How could I go about using ASP or ASP.NET to take the information of any
    form she designed in Frontpage and submitted to the asp/asx page, and
    rebuild that HTML form page identically--filling in the submitted
    information and then send it to her. Or save the information--I thought of
    looping through each control and placing in a delimited database field and
    then sending her a link to a page, but
    how could I regenerate her html page and fill in the form without having to
    make a new asp page for each different HTML form that she makes?

    Any help would be appreciated.

    I thought maybe there might be a code behind way for her to just add one
    code behind line to her html page, but
    then I know the control must be runat server and other items for it to work.

    Is there anyway to make this work so that she creates forms and I just mail
    whatever form to her with data intact?

    thanks

    Shane


    SStory Guest

  2. Similar Questions and Discussions

    1. Generating the *.aspx.designer.vb Files
      I have an ASP.NET application in which I register several of my usercontrols in the Web.config file's...
    2. Accessing a aspx page using HttpWebRequest from another aspx page on the same webapp
      Did you have any luck on this as I have the same problem. Maybe you can help me out of you solved your problem.
    3. I love a Publisher design, can I import the design into Frontpage?
      I'm establishing an identity for my new company using a Publisher design set. How do I use that basic design in Frontpage? Can I just creat a...
    4. Adding aspx pages to a static FrontPage site
      I have a very simple website, built in FrontPage 2002, which displays static information only. I would like to add some ASP.NET web forms...
    5. opening aspx-files in frontpage?
      Hello everybody, I have created a webform using ASP.NET/C# as a part of my bachelor thiesis on the behalf of a Community school. The form should...
  3. #2

    Default Re: how to allow designer to design in frontpage and hit the same asp/aspx page

    Thanks for the answer.
    I know ASP, but am really new at ASP.NET
    I don't understand the part of creating a webrequest.
    Would that get the whole html page in memory or something?
    How would it accomplish mailing the actual filled out page--form filled in
    and all?

    "Kevin Spencer" <kevin@takempis.com> wrote in message
    news:eLtq2ARUDHA.2196@TK2MSFTNGP12.phx.gbl...
    > Well, as the form submits to the ASPX page, the URL of the HTML form would
    > be found in Request.ServerVariables["HTTP_REFERER"]. You could use this to
    > create a WebRequest for the HTML page, which would return the actual page.
    > From there it's a relatively simple matter of identifying the form fields
    by
    > parsing the HTML, and populating them.
    >
    > --
    > HTH,
    >
    > Kevin Spencer
    > Microsoft MVP
    > .Net Developer
    > [url]http://www.takempis.com[/url]
    > Big things are made up of
    > lots of little things.
    >
    > "SStory >" <Shane_Story@online.msn.com <remove the 'online.' to send me
    > mail> wrote in message news:Otgr96HUDHA.2308@TK2MSFTNGP12.phx.gbl...
    > > My client wants to design ever changing forms in Frontpage and have them
    > > mailed in HTML format to her.
    > >
    > > How could I go about using ASP or ASP.NET to take the information of any
    > > form she designed in Frontpage and submitted to the asp/asx page, and
    > > rebuild that HTML form page identically--filling in the submitted
    > > information and then send it to her. Or save the information--I thought
    > of
    > > looping through each control and placing in a delimited database field
    and
    > > then sending her a link to a page, but
    > > how could I regenerate her html page and fill in the form without having
    > to
    > > make a new asp page for each different HTML form that she makes?
    > >
    > > Any help would be appreciated.
    > >
    > > I thought maybe there might be a code behind way for her to just add one
    > > code behind line to her html page, but
    > > then I know the control must be runat server and other items for it to
    > work.
    > >
    > > Is there anyway to make this work so that she creates forms and I just
    > mail
    > > whatever form to her with data intact?
    > >
    > > thanks
    > >
    > > Shane
    > >
    > >
    >
    >

    SStory Guest

  4. #3

    Default Re: how to allow designer to design in frontpage and hit the same asp/aspx page

    Thanks for the idea..

    After a lot of reading, I finally got what you are talking about... pretty
    drastic and has taken me 250-300lines of code, but I am getting very close
    to having what I need.

    Shane

    "Kevin Spencer" <kevin@takempis.com> wrote in message
    news:eLtq2ARUDHA.2196@TK2MSFTNGP12.phx.gbl...
    > Well, as the form submits to the ASPX page, the URL of the HTML form would
    > be found in Request.ServerVariables["HTTP_REFERER"]. You could use this to
    > create a WebRequest for the HTML page, which would return the actual page.
    > From there it's a relatively simple matter of identifying the form fields
    by
    > parsing the HTML, and populating them.
    >
    > --
    > HTH,
    >
    > Kevin Spencer
    > Microsoft MVP
    > .Net Developer
    > [url]http://www.takempis.com[/url]
    > Big things are made up of
    > lots of little things.
    >
    > "SStory >" <Shane_Story@online.msn.com <remove the 'online.' to send me
    > mail> wrote in message news:Otgr96HUDHA.2308@TK2MSFTNGP12.phx.gbl...
    > > My client wants to design ever changing forms in Frontpage and have them
    > > mailed in HTML format to her.
    > >
    > > How could I go about using ASP or ASP.NET to take the information of any
    > > form she designed in Frontpage and submitted to the asp/asx page, and
    > > rebuild that HTML form page identically--filling in the submitted
    > > information and then send it to her. Or save the information--I thought
    > of
    > > looping through each control and placing in a delimited database field
    and
    > > then sending her a link to a page, but
    > > how could I regenerate her html page and fill in the form without having
    > to
    > > make a new asp page for each different HTML form that she makes?
    > >
    > > Any help would be appreciated.
    > >
    > > I thought maybe there might be a code behind way for her to just add one
    > > code behind line to her html page, but
    > > then I know the control must be runat server and other items for it to
    > work.
    > >
    > > Is there anyway to make this work so that she creates forms and I just
    > mail
    > > whatever form to her with data intact?
    > >
    > > thanks
    > >
    > > Shane
    > >
    > >
    >
    >

    SStory 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