Click here to Skip to main content
15,885,914 members
Articles / Programming Languages / Javascript

Using AJAX to fetch data from ASP script

Rate me:
Please Sign up or sign in to vote.
2.73/5 (14 votes)
10 Oct 20053 min read 76.4K   629   12  
Using AJAX to fetch data from a server (ASP script) without refreshing.
<!-- asp_server.asp-->

<%@ Language=VBScript %>

<%
dim v_nme,v_city
v_nme="name : New Begin"
v_city="City : Chennai"
Response.Write(v_nme&"<br>"&v_city)
%>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior)
United States United States
Rich development experience in Internet/Intranet based applications using Dot net C# , ASPX , ASP, MS SQL Server,AJAX, JavaScript,HTML,XML,CSS.

Comments and Discussions