Web Application for Polycom Phones UC Software 5.0.0
Polycom, Inc. 69
To develop an XML API application: 1 Using your integrated development environment (IDE) of choice, create a new file and name this file webcallback.aspx.
Table 59: webcallback XHTML Example
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="WebCallback.aspx.cs"
Inherits="WebCallback" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Web Call Back Request</title>
</head>
<body>
<form id="form1" runat="server">
<div>
Please Enter Your Name and Phone # &nbsp;to Ask an Agent to Call Back
Immediately:<br />
<br />
Name:<br />
<asp:TextBox ID="BoxName" runat="server" Height="23px"
Width="192px"></asp:TextBox><br />
<br />
Phone #<br />
<asp:TextBox ID="BoxNumber" runat="server" Height="22px"
Width="192px"></asp:TextBox><br />
<br />
<asp:Button ID="Button1" runat="server" Height="30px"
OnClick="Button1_Click" Text="Send Request"
Width="162px" /></div>
</form>
</body>
</html>