|
| ||||||||||
| Tags: asp, dynamic page, form, html, ie 8, static page, submit button |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| Query on submitting forms using ASP
|
|
#2
| ||||
| ||||
| Re: Query on submitting forms using ASP
You might have created the form using HTML language. Now the thing you need to do is when the submit button is clicked it should redirect to different page with the help of dynamic content and it can be done by mentioning the asp form name on the post section of the form. You can do it by just creating one asp page for redirection of the page and linking the name of the form with the extension on post method.
__________________ The FIFA Manager 2009 PC Game |
|
#3
| ||||
| ||||
| Re: Query on submitting forms using ASP
The code for your form can be serialized or be coded in a specific form. I set you a example for an email messaging form post method. This has to seen that the method should be post and action parameters should be mentioned with the asp page. The email messaging form contains name, emails and comments. The asp code for the following is as: <% Dim name, email, comments 'Receiving values from Form, assign the values entered to variables name = Request.Form("name") email = Request.Form("email") comments =Request.Form("comments") %> Source: codingforums.com |
|
#4
| ||||
| ||||
| Re: Query on submitting forms using ASP
As the above solutions might have helped you out in how to make the page and post the method with mean of the page to be in action. This is how you can redirect the page using asp that is dynamically. Now the only thing left is connectivity that is not a big issue as far as it depends what backend you use that is the database to store the inserted values. For a suggestion MS Access is easy and not complicated for a beginner. |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "Query on submitting forms using ASP" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Benefits of submitting Blogs | Ovia | Technology & Internet | 8 | 21-04-2012 05:53 PM |
| Submitting URL with missing Avira exploits | Kumbakaran | Networking & Security | 4 | 29-05-2011 10:15 AM |
| Submitting a form by pressing the Enter key | Measurer | Software Development | 4 | 16-12-2009 08:15 PM |
| Turn on MySQL query cache to speed up query performance | DMA2Superman | Software Development | 3 | 07-07-2009 10:26 AM |
| Query Regarding Visual Basic.Net Forms | Kusagra | Software Development | 3 | 25-03-2009 02:16 PM |