You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
567 B

<%@ Page Language="C#" Inherits="cs_addparam1" Src="cs_addparam1.aspx.cs" %>
<%@ Register TagPrefix="obout" Namespace="OboutInc.Calendar2" Assembly="obout_Calendar2_Net" %>
<html>
<head runat="server">
<script language="JavaScript">
function ComputeAge() {
var name = document.getElementById('txtName').value;
var year = document.getElementById('txtDate').value.split('/')[2];
ob_post.AddParam('name', name);
ob_post.AddParam('year', year);
ob_post.post(null, "ComputeAge", ResultComputeAge);
}
function ResultComputeAge(result , ex) {