(Updated: 2010.04.15 10:13:53 PM)
| |
Active FoxPro Pages (AFP) is a Web server extension like PHP or ASP. Active
FoxPro Pages can be run in two operation modes - either as a VFP program that generates HTML/XML output or as program code inside an HTML/XML page. Both are equal. AFP may be compared to Microsoft?s ASP technology; it is a Script Engine for xBase programmers that allows dynamic data presentation in the Internet.
Active FoxPro Pages (AFP) runs on any ISAPI compliant Web server like Microsoft Internet Information Services, Apache HTTPd 2.0.x, and others on Windows 2000, Windows XP, and Windows Server 2003. Active
FoxPro Pages gives any VFP developer as well as Web designer a fast and easy way to build dynamic, data-driven Web pages. According to the plugin interface anyone can enhance the functionality on its own. Active
FoxPro Pages 3.0 is a true multi-threaded engine based on Microsoft
Visual FoxPro 8 and higher. Download a free trial version at
http://www.AFPages.com
AFP is a product of
ProLib Software
GmbH, Germany. You get more information about AFP at one of the following product websites at:
Versions since 3.0.600 provide Intellisense Extension for
Visual FoxPro to ease development of web applications within Microsoft VFP. The solution is based on the upcoming
My-Namespace of Sedna.
Highlights:
- Extremely simple programming in Front Page, Visual Inter Dev or even under Windows Notepad.
- xBase - Code is embedded in HTML ? Code.
- Ideal for dBase, Clipper and Visual FoxPro programmers.
- Object-oriented programming is fully supported but not necessary.
- Based on the world?s fastest PC Data Base.
- Supports multi-processor technology.
- Instant live testing without compilation.
- Optional compiling results in multiplied speed.
- Built-in hooks for individual extension.
- Supports HTTP and AFP Cookies.
- No VBScript, Javascript, or ODBC Driver necessary.
- Use any browser.
- No code visible outside.
- Automatic e-mail in case of error.
- Supports encryption tools, memo indexers and WINAPI calls.
To explain what it is.... simply think of the Active Server Pages from
Microsoft and write
FoxPro Code instead of VB-stuff.
Take a look at the following HTML-Page and you can see, that there is
FoxPro Code in it:
All customernames from table CUSTOMER
<table border="1" width="95%">
<tr>
<td width="10%"<%?"cust_id"%></td>
<td width="35%"<%?"company"%></td>
<td width="35%"<%?"contact"%></td>
</tr>
<%
if not used("customer")
use data\customer in 0
endif
select customer
scan
%>
<tr>
<td width="10%"><%?customer.cust_id%></td>
<td width="35%"><%?customer.company%></td>
<td width="35%"><%?customer.contact%></td>
</tr>
<%endscan%>
</table>
</body>
</html>
Related Websites:
AFP FAQ -
http://www.afpfaq.de
Category Web Tools Category Third Party Products Category Web Development