12345678910111213141516171819202122232425262728293031323334 |
- <!--#include file="common.asp"-->
- <%
- Dim uid, rse, width, rsRole, isAdmin
- uid = request.Cookies("uid")
- if trim(Lcase(AdminName)) = "admin" then
- isAdmin = true
- else
- isAdmin = false
- end if
- set rse = conn.execute("select devicename from t_dev_property where uid = '" & uid & "'")
- %>
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td height="25"> </td>
- </tr>
- </table>
- <table width="100%" border="0" cellspacing="1" cellpadding="0">
- <tr>
- <td width="25" height="25" align="center" style="border-bottom:1px dotted #CCCCCC"><img src="images/system_status.gif" width="13" height="13" /></td>
- <td width="65" style="border-bottom:1px dotted #CCCCCC"><img src="images/title_system_status.gif" /></td>
- <td style="border-bottom:1px dotted #CCCCCC" id="td_alarm">
- <!--#include file="codeAlarm.asp"-->
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
|