Ask a Question related to ASP.NET General, Design and Development.
-
SStory #1
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
-
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... -
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. -
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... -
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... -
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... -
SStory #2
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...by> 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 fieldsand> 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...> of> > 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> > looping through each control and placing in a delimited database field> to> > then sending her a link to a page, but
> > how could I regenerate her html page and fill in the form without having> work.> > 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> >
> > Is there anyway to make this work so that she creates forms and I just>> > whatever form to her with data intact?
> >
> > thanks
> >
> > Shane
> >
> >
>
SStory Guest
-
SStory #3
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...by> 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 fieldsand> 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...> of> > 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> > looping through each control and placing in a delimited database field> to> > then sending her a link to a page, but
> > how could I regenerate her html page and fill in the form without having> work.> > 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> >
> > Is there anyway to make this work so that she creates forms and I just>> > whatever form to her with data intact?
> >
> > thanks
> >
> > Shane
> >
> >
>
SStory Guest



Reply With Quote

