This is a discussion on How do I submit a form or a part of a form without a page refresh in ASP.Net using C# within the ASP and ASP.NET Programming forums, part of the Web Development category; How do I submit a form or a part of a form without a page refresh in ASP.Net using ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| When creating a form make sure that the "form" element "onSubmit" attribute is set to a JavaScript function that returns false. <form onSubmit="doAJAXSubmit(); return false;" > <input type="text" id="tf1" /> <input type="submit" id="submit1" value="Update"/> </> You can also submit data by associating a function with a form button in a similar way. |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How can we submit a form without a submit button? | sundarraja | PHP Programming | 4 | 02-29-2008 09:37 PM |
| Submit a Form using Javascript | velhari | HTML, CSS and Javascript Coding Techniques | 3 | 11-14-2007 03:33 AM |
| How can I have a dropdown form redirect to other pages, without a submit button? | itbarota | HTML, CSS and Javascript Coding Techniques | 2 | 11-01-2007 10:20 PM |
| How can I pass a hidden value to a form and submit that form when a text link is clic | itbarota | HTML, CSS and Javascript Coding Techniques | 1 | 10-17-2007 08:07 AM |
| Submit without form | Anand | PHP Programming | 1 | 07-19-2007 03:36 AM |