26 lines
715 B
Plaintext
26 lines
715 B
Plaintext
<%@ LANGUAGE = JavaScript %>
|
|
|
|
<% /*
|
|
$Revision: 1 $
|
|
$Modtime: 9-02-09 13:28 $
|
|
|
|
File: bez_xml.asp
|
|
Description: XML converter for bezoekers/afspraak
|
|
Parameters:
|
|
afspr_key required, key of the bez_afspraak to convert into XML
|
|
|
|
|
|
Context: Called from register_input.asp
|
|
Note:
|
|
*/ %>
|
|
|
|
<!-- #include file="../../cust/install.inc"-->
|
|
<!-- #include file="../Shared/funcodes.inc"-->
|
|
<!-- #include file="../Shared/xml_converter.inc" -->
|
|
|
|
<%
|
|
var afspr_key = (Request.QueryString("afspr_key").Count>0)?parseInt(Request.QueryString("afspr_key")):-1;
|
|
|
|
FCLT2XMLResponse('afspraak', afspr_key, null, -1,'','');
|
|
%>
|