温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:Asp.net简单网络选课系统源码
当前文件路径:MyElectCourse/Main.aspx

1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Main.aspx.cs" Inherits="Main" %> 2
3
<%@ Register Src="Controls/left.ascx" TagName="left" TagPrefix="uc1" %> 4
5
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 6
7
<html xmlns="http://www.w3.org/1999/xhtml" > 8
<head runat="server"> 9
<title>Main</title> 10
<script language="javascript"> 11
var nShow = 1; 12
function switchSysBar() 13
{ 14
if (document.all("TDTree").style.display == "") 15
{ 16
document.all("TDTree").style.display = "none" 17
document.all.movetool.innerHTML = "<img src='Images/movetoolright1.gif' width='10' height='39' border='0'>"; 18
} 19
else 20
{ 21
document.all("TDTree").style.display = ""; 22
document.all.movetool.innerHTML = "<img src='Images/movetool1.gif' width='10' height='39' border='0'>"; 23
} 24
} 25
</script> 26
</head> 27
<body leftmargin=0 rightmargin=0> 28
<form id="form1" runat="server"> 29
<div> 30
<table align=center id=table1 cellpadding=0 cellspacing=0 border=0> 31
<tr> 32
<td valign=top align=center width=80 id="TDTree"> 33
<uc1:left ID="Left1" runat="server" /> 34
</td> 35
<td width="10"><a style="CURSOR:hand" onClick="switchSysBar()" id="A1"><img src="Images/movetool1.gif" width="10" height="39" border="0"></a></td> 36
<td vAlign="top" align=left><iframe id=Main name=frameMain src=ModifyPwd.aspx height=300 width=320 frameborder=no marginwidth=0 marginheight=0></iframe></td> 37
</tr> 38
</table> 39
</div> 40
</form> 41
</body> 42
</html> 43




}
