68 lines
2.7 KiB
Plaintext
68 lines
2.7 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="MyDesk.aspx.cs" Inherits="MyDesk" %>
|
|
<html>
|
|
<head>
|
|
<title><%=System.Configuration.ConfigurationManager.AppSettings["SYSTitle"]%></title>
|
|
<LINK href="../Style/Style.css" type="text/css" rel="STYLESHEET">
|
|
</head>
|
|
<body>
|
|
|
|
<script type="text/javascript">
|
|
function SwitchMenu(theClass){
|
|
var alldivTags=document.getElementsByTagName("div");
|
|
for(i=0;i<alldivTags.length;i++){
|
|
if(alldivTags[i].className==theClass) {
|
|
if(alldivTags[i].style.display=='none'){
|
|
alldivTags[i].style.display='block';
|
|
}else{
|
|
alldivTags[i].style.display='none';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<script language="javascript" >
|
|
function _delmodel(a)
|
|
{
|
|
msg="确认不显示此模块吗?";
|
|
if(window.confirm(msg))
|
|
{
|
|
window.location.href ='MyDeskDel.aspx?ModelName='+a;
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<form id="form1" runat="server">
|
|
<div>
|
|
<table id="PrintHide" style="width: 100%;" border="0" cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td valign="middle" style="border-bottom: #006633 1px dashed; height: 30px; width: 140px;"> <img src="../images/BanKuaiJianTou.gif" />
|
|
我的办公桌 </td>
|
|
<td style="border-bottom: #006633 1px dashed; height: 30px" valign="middle">
|
|
<asp:RadioButtonList ID="RadioButtonList1" runat="server" AutoPostBack="True" OnSelectedIndexChanged="RadioButtonList1_SelectedIndexChanged"
|
|
RepeatDirection="Horizontal">
|
|
<asp:ListItem>单位门户</asp:ListItem>
|
|
<asp:ListItem Selected="True">个人门户</asp:ListItem>
|
|
</asp:RadioButtonList></td>
|
|
<td align="right" valign="middle" style="border-bottom: #006633 1px dashed; height: 30px;">
|
|
<a href="MyDeskSetting.aspx"> <img align="absMiddle" border="0" src="../images/Button/Setting.gif" /></a>
|
|
<img src="../images/Button/JianGe.jpg" />
|
|
<img class="HerCss" onclick="javascript:window.history.go(-1)" src="../images/Button/BtnExit.jpg" /> </td>
|
|
</tr>
|
|
<tr>
|
|
<td height="3px" colspan="3" style="background-color: #ffffff"></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<asp:Panel ID="Panel1" runat="server" Height="50px" Width="100%">
|
|
|
|
<asp:Label ID="Label1" runat="server"></asp:Label>
|
|
|
|
</asp:Panel>
|
|
|
|
|
|
<asp:Panel ID="Panel2" runat="server" Visible="false" Height="50px" Width="100%">
|
|
<asp:Label ID="Label2" runat="server"></asp:Label></asp:Panel>
|
|
</form>
|
|
</body>
|
|
</html> |