Home
About
Contact
Categories
Classic ASP (28 - Sub-Categories)
CSS (1 - Sub-Category)
JavaScript (4 - Sub-Categories)
Databases (22 - Sub-Categories)
ASP.NET (23 - Sub-Categories)
Delphi (5 - Sub-Categories)
Windows Server Core (3 - Sub-Categories)
VMWare (1 - Sub-Category)
Code Editing Tools (2 - Sub-Categories)
Linux (2 - Sub-Categories)
Dell Servers (15 - Sub-Categories)
Bug Reports
(Bugs Fixed
New CFFCS Coding Source is still in Beta
Please report any errors to the [Contact] page. Thank you.
Classic ASP (28)
CSS (1)
JavaScript (4)
Databases (22)
ASP.NET (23)
Delphi (5)
Windows Server Core (3)
VMWare (1)
Code Editing Tools (2)
Linux (2)
Dell Servers (15)
Resources
[View The Source Code For This Project]
Format SQL Script
JavaScript
AJAX
AJAX submit form without Refreshing the page - Classic ASP
HTML
Ajax form submit without reloading page
Submit form using Ajax
Name
Submit Form
CSS
#One{ color:blue; padding-right:4.9em; } #Two{ color:blue; padding-right:2em; } button{ width:13.3em; }
Classic ASP
2.asp
<% ' Make sure to have this at the top of all your processing pages, as this will help with Accent Characters. Response.ContentType = "text/html" Response.AddHeader "Content-Type", "text/html;charset=UTF-8" Response.CodePage = 65001 Response.CharSet = "UTF-8" ' First we get the hidden form field and check its value gettheSub = Request.Form("SubmitForm") ' If its value is correct, we can then process the page. if gettheSub="Code" then strGet = request.Form("theEditor") response.Write strGet end if %>
Preview
Tags
Submitting the form without refreshing the page
Ajax submit form without refreshing the page
use ajax to submit form