<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>

<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="GENERATOR" content="Microsoft FrontPage 2.0">
<title>Staff Directory Record</title>
</head>

<body bgcolor="#FFFFFF">


<!--METADATA TYPE="DesignerControl" startspan
<OBJECT ID="Include1" WIDTH=151 HEIGHT=24
CLASSID="CLSID:F602E725-A281-11CF-A5B7-0080C73AAC7E">
<PARAM NAME="_Version" VALUE="65536">
<PARAM NAME="_ExtentX" VALUE="3969">
<PARAM NAME="_ExtentY" VALUE="635">
<PARAM NAME="_StockProps" VALUE="0">
<PARAM NAME="Source" VALUE="adovbs.inc">
</OBJECT>
-->
<!--#INCLUDE FILE="adovbs.inc"-->
<!--METADATA TYPE="DesignerControl" endspan-->

<% ien = Request("ien") %>

<h1>Staff Directory Record</h1>

<table border="1" width="100%">


<!--METADATA TYPE="DesignerControl" startspan
<OBJECT ID="DataCommand1" WIDTH=151 HEIGHT=24
CLASSID="CLSID:7FAEED80-9D58-11CF-8F68-00AA006D27C2">
<PARAM NAME="_Version" VALUE="65536">
<PARAM NAME="_Version" VALUE="65536">
<PARAM NAME="_ExtentX" VALUE="3969">
<PARAM NAME="_ExtentY" VALUE="635">
<PARAM NAME="_StockProps" VALUE="0">
<PARAM NAME="DataConnection" VALUE="DataConn">
<PARAM NAME="CommandText" VALUE="ST_PHONE_IEN('" & ien & "')">
<PARAM NAME="CommandType" VALUE="1">
</OBJECT>
-->
<%
Set DataConn = Server.CreateObject("ADODB.Connection")
DataConn.ConnectionTimeout = Session("DataConn_ConnectionTimeout")
DataConn.CommandTimeout = Session("DataConn_CommandTimeout")
DataConn.Open Session("DataConn_ConnectionString"), Session("DataConn_RuntimeUserName"), Session("DataConn_RuntimePassword")
Set cmdTemp = Server.CreateObject("ADODB.Command")
Set DataCommand1 = Server.CreateObject("ADODB.Recordset")
cmdTemp.CommandText = "ST_PHONE_IEN('" & ien & "')"
cmdTemp.CommandType = 4
Set cmdTemp.ActiveConnection = DataConn
DataCommand1.Open cmdTemp, , 0, 1
%>
<!--METADATA TYPE="DesignerControl" endspan-->
<tr>
<td align="right" width="20%" bgcolor = "#800080"><font color = "#FFFFFF"><strong>Name:</strong></font></td>
<td width="80%"><strong><%= DataCommand1("REAL_NAME") %></strong></td>
</tr>
<tr>
<td align="right" width="20%" bgcolor = "#800080"><font color = "#FFFFFF"><strong>Degree:</strong></font></td>
<td width="80%"><strong><%= DataCommand1("DEG") %></strong></td>
</tr>
<tr>
<td align="right" width="20%" bgcolor = "#800080"><font color = "#FFFFFF"><strong>Title:</strong></font></td>
<td width="80%"><strong><%= DataCommand1("TITLE") %></strong></td>
</tr>
<tr>
<td width="20%"><strong></strong></td>
<td width="80%"><strong></strong></td>
</tr>
<tr>
<td align="right" width="20%" bgcolor = "#800080"><font color = "#FFFFFF"><strong>Service:</strong></font></td>
<td width="80%"><strong><%= DataCommand1("SERV") %></strong></td>
</tr>
<tr>
<td align="right" width="20%" bgcolor = "#800080"><font color = "#FFFFFF"><strong>Section:</strong></font></td>
<td width="80%"><strong><%= DataCommand1("REAL_SECTION") %></strong></td>
</tr>
<tr>
<td align="right" width="20%" bgcolor = "#800080"><font color = "#FFFFFF"><strong>Routing Symbol:</strong></font></td>
<td width="80%"><strong><%= DataCommand1("ROUTING_SYMBOL") %></strong></td>
</tr>
<tr>
<td align="right" width="20%" bgcolor = "#800080"><font color = "#FFFFFF"><strong>Room-Building:</strong></font></td>
<td width="80%"><strong><%= DataCommand1("RM") %></strong></td>
</tr>
<tr>
<td width="20%"><strong></strong></td>
<td width="80%"><strong></strong></td>
</tr>
<tr>
<td align="right" width="20%" bgcolor = "#800080"><font color = "#FFFFFF"><strong>Extension:</strong></font></td>
<td width="80%"><strong><%= DataCommand1("DISPLAY_EXTENSION") %></strong></td>
</tr>
<tr>
<td align="right" width="20%" bgcolor = "#800080"><font color = "#FFFFFF"><strong>Voice Pager:</strong></font></td>
<td width="80%"><strong><%= DataCommand1("VOICE_PAGER") %></strong></td>
</tr>
<tr>
<td align="right" width="20%" bgcolor = "#800080"><font color = "#FFFFFF"><strong>Digital Pager:</strong></font></td>
<td width="80%"><strong><%= DataCommand1("DIGITAL_PAGER") %></strong></td>
</tr>

</table>
</body>
</html>


Back