温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:ajax奥运留言本v1.0源码
当前文件:
OlympicBook/RoleByAccess/adminpara.aspx[3K,2009-6-12 11:51:24],打开代码结构图
OlympicBook/RoleByAccess/adminpara.aspx[3K,2009-6-12 11:51:24],打开代码结构图1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="adminpara.aspx.cs" Inherits="RoleByAccess_adminpara" %> 2
3
<%@ Register Src="top.ascx" TagName="top" TagPrefix="uc2" %> 4
5
<%@ Register Src="bottoml.ascx" TagName="bottoml" TagPrefix="uc1" %> 6
7
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 8
9
<html xmlns="http://www.w3.org/1999/xhtml" > 10
<head runat="server"> 11
<title>参数设置</title> 12
<link rel="Stylesheet" href="admin.css" type="text/css" /> 13
</head> 14
<body> 15
<form id="form1" runat="server"> 16
<uc2:top ID="Top1" runat="server" /> 17
<div id="div1"> 18
<table border="0" cellpadding="0" cellspacing="0" style="width: 600px"> 19
<tr> 20
<td colspan="2"> 21
管理选项</td> 22
</tr> 23
<tr> 24
<td align="right" > 25
用户名称:</td> 26
<td align="left" > 27
<asp:TextBox ID="username" runat="server"></asp:TextBox> 28
</td> 29
</tr> 30
<tr> 31
<td align="right" style="height: 27px">原密码:</td> 32
<td align="left" style="height: 27px" > 33
<asp:TextBox ID="userpwd" runat="server" TextMode="Password"></asp:TextBox> 34
<asp:Label ID="Label1" runat="server" ForeColor="Red" Width="164px"></asp:Label></td> 35
</tr> 36
<tr> 37
<td align="right" style="height: 27px" > 新密码:</td> 38
<td align="left" style="height: 27px" > 39
<asp:TextBox ID="newpwd" runat="server" TextMode="Password"></asp:TextBox> 40
</td> 41
</tr> 42
<tr> 43
<td align="right" style="height: 26px"> 44
重复密码:</td> 45
<td align="left" style="height: 26px"> 46
<asp:TextBox ID="newreaptpwd" runat="server"></asp:TextBox> 47
<asp:Button ID="Button2" runat="server" Text="修改" OnClick="Button2_Click" /></td> 48
</tr> 49
<tr> 50
<td align="right" > 51
最大留言字数:</td> 52
<td align="left"> 53
<asp:TextBox ID="letters" runat="server"></asp:TextBox></td> 54
</tr> 55
<tr> 56
<td align="right" style="height: 25px" > 57
脏话过滤:</td> 58
<td align="left" style="height: 25px" > 59
<asp:TextBox ID="zanghua" runat="server"></asp:TextBox>用“,”间隔</td> 60
</tr> 61
<tr> 62
<td colspan="2"> 63
<asp:Button ID="Button1" runat="server" Text="保存设置" OnClick="Button1_Click" /></td> 64
</tr> 65
</table> 66
</div> 67
<uc1:bottoml ID="Bottoml1" runat="server" /> 68
</form> 69
</body> 70
</html> 71




