⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 detail.aspx

📁 这是一个简易的在线通讯簿系统
💻 ASPX
字号:
<%@ Page Language="C#" ContentType="text/html" ResponseEncoding="gb2312" Inherits="ShaoYong.ContactBook.DetailPage" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>查看详细信息</title>
<link href="main.css" rel="stylesheet" type="text/css">
<script language="javascript">
<!--
function PopupEmailSender(mail) {
	var url = "email.aspx?mail=" + mail;
	var winfeature = "width=600,height=350";
	window.open(url, "_blank", winfeature);
}
//-->
</script>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="235"><img src="images/page_top_left.png" width="235" height="46"></td>
    <td width="490"><img src="images/page_top_right.png" width="490" height="46"></td>
    <td background="images/page_top_bg.gif"><img src="images/page_top_bg.gif" width="5" height="46"></td>
  </tr>
</table>
<form runat="server">
<div id="main_content">
<table width="760" border="0" align="center" cellpadding="0" cellspacing="0">
    <tr>
      <td><span class="heading">查看通讯簿</span></td>
      <td align="right">
		<span id="linkUserAdmin" runat="server"><img src="images/link_item.gif" width="13" height="11" hspace="3" align="absmiddle"></span><a href="default.aspx">返回</a> | 
		<asp:LinkButton ID="btnModify" runat="server" Text="修改" /> | <a href="additem.aspx">添加新条目</a></td>
    </tr>
    <tr> 
      <td height="20" colspan="2"><img class="hdivline" src="images/hdivline.gif" width="760" height="13"></td>
    </tr>
    <tr>
        <td colspan="2">
		<fieldset style="padding:5px">
          <legend><strong>查看详细信息</strong></legend>
		  <asp:Panel ID="pnlDetail" runat="server">
          <table width="100%" border="0" cellspacing="0" cellpadding="3">
            <tr valign="top"> 
              <td width="100">
                <table width="100" border="0" cellpadding="3" cellspacing="0">
                  <tr>
                    <td height="21" align="right">姓名</td>
                  </tr>
                  <tr>
                    <td height="21" align="right">分组</td>
                  </tr>
                  <tr>
                    <td height="21" align="right">妮称</td>
                  </tr>
                  <tr>
                    <td height="21" align="right">性别</td>
                  </tr>
                  <tr>
                    <td height="21" align="right">生日</td>
                  </tr>
                  <tr>
                    <td height="21" align="right">职业</td>
                  </tr>
                  <tr>
                    <td height="21" align="right">办公电话</td>
                  </tr>
                  <tr>
                    <td height="21" align="right">住宅电话</td>
                  </tr>
                  <tr>
                    <td height="21" align="right">移动电话</td>
                  </tr>
                  <tr>
                    <td height="21" align="right">联系地址</td>
                  </tr>
                  <tr>
                    <td height="21" align="right">邮编</td>
                  </tr>
                </table>
			  </td>
              <td width="8"><img src="images/vdivline.gif" width="8" height="237"></td>
              <td width="250"> 
                <table width="250" border="0" cellpadding="3" cellspacing="0">
                  <tr> 
                    <td height="21"><%# BookItem["Name"] %></td>
                  </tr>
                  <tr> 
                    <td height="21"><%# BookItem["Group"] %></td>
                  </tr>
                  <tr> 
                    <td height="21"><%# BookItem["Nickname"] %></td>
                  </tr>
                  <tr> 
                    <td height="21"><%# (bool)BookItem["Male"] ? "男" : "女" %></td>
                  </tr>
                  <tr> 
                    <td height="21">
					<%# (DateTime)BookItem["Birthday"] == BlankDate ?
						"不详" : ((DateTime)BookItem["Birthday"]).ToShortDateString()
                        + ((bool)BookItem["IsLunarDate"] ? " (农历)" : "") %>
					</td>
                  </tr>
                  <tr> 
                    <td height="21"><%# BookItem["Job"] %></td>
                  </tr>
                  <tr> 
                    <td height="21"><%# BookItem["OfficePhone"] %></td>
                  </tr>
                  <tr> 
                    <td height="21"><%# BookItem["HomePhone"] %></td>
                  </tr>
                  <tr> 
                    <td height="21"><%# BookItem["MobilePhone"] %></td>
                  </tr>
                  <tr> 
                    <td height="21"><%# BookItem["Address"] %></td>
                  </tr>
                  <tr> 
                    <td height="21"><%# BookItem["Postcode"] %></td>
                  </tr>
                </table></td>
              <td width="80"> 
                <table width="80" border="0" cellpadding="3" cellspacing="0">
                  <tr> 
                    <td height="21" align="right">QQ</td>
                  </tr>
                  <tr> 
                    <td height="21" align="right">MSN </td>
                  </tr>
                  <tr> 
                    <td height="21" align="right">Yahoo</td>
                  </tr>
                  <tr> 
                    <td height="21" align="right">Skype</td>
                  </tr>
                  <tr> 
                    <td height="21" align="right">电子邮箱</td>
                  </tr>
                  <tr> 
                    <td height="21" align="right">个人主页</td>
                  </tr>
                  <tr> 
                    <td height="84" align="right" valign="top">备注</td>
                  </tr>
                  <tr> 
                    <td height="21" align="right">更新日期</td>
                  </tr>
                </table></td>
              <td width="8"><img src="images/vdivline.gif" width="8" height="237"></td>
              <td> 
                <table width="90%" border="0" cellpadding="3" cellspacing="0">
                  <tr> 
                    <td height="21"><%# BookItem["IM_QQ"] %></td>
                  </tr>
                  <tr> 
                    <td height="21"><%# BookItem["IM_MSN"] %></td>
                  </tr>
                  <tr> 
                    <td height="21"><%# BookItem["IM_Yahoo"] %></td>
                  </tr>
                  <tr> 
                    <td height="21"><%# BookItem["IM_Skype"] %></td>
                  </tr>
                  <tr> 
                    <td height="21"><a href="javascript:PopupEmailSender('<%# BookItem["Email"] %>')"><%# BookItem["Email"] %></a></td>
                  </tr>
                  <tr> 
                    <td height="21"><%# BookItem["Homepage"] %></td>
                  </tr>
                  <tr> 
                    <td height="84" valign="top"><%# BookItem["Comment"] %></td>
                  </tr>
                  <tr> 
                    <td height="21"><%# BookItem["LastModified"] %></td>
                  </tr>
                </table>
			  </td>
            </tr>
          </table>
		  </asp:Panel>
          <div>&nbsp;</div>
          <table width="100%" border="0" cellpadding="0" cellspacing="0">
            <tr> 
              <td>&nbsp;&nbsp;<strong>照片</strong></td>
            </tr>
            <tr> 
              <td><img src="images/hdivline.gif" width="624" height="13"></td>
            </tr>
            <tr> 
              <td> <asp:Panel ID="pnlPhotos" CssClass="photoPreview" Runat="server" /> </td>
            </tr>
          </table>
          </fieldset>
		  </td>
    </tr>
  </table>
  </div>
</form>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -