温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:WO@BIZ第一季1.2版源码
当前文件:
WOBIZ/admin/Verification.aspx,打开代码结构图
WOBIZ/admin/Verification.aspx,打开代码结构图1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Verification.aspx.cs" Inherits="admin_Verification" %> 2
3
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 4
5
<html xmlns="http://www.w3.org/1999/xhtml" > 6
<head runat="server"> 7
<title>验证码设置</title> 8
<link href="Css/admin.css" rel="stylesheet" type="text/css" /> 9
</head> 10
<body> 11
<form id="form1" runat="server"> 12
<div> 13
<table width="100%" border="0" cellspacing="0" cellpadding="0"> 14
<tr> 15
<td width="10"><img src="Images/z-top_left.gif" width="10" height="33"></td> 16
<td valign="bottom" background="Images/z-center_center.gif"><table width="100" border="0" cellspacing="0" cellpadding="0"> 17
<tr> 18
<td width="3"><img src="Images/left1.gif" width="3" height="29"></td> 19
<td background="Images/center1.gif"><div align="center"><strong>基本设置</strong></div></td> 20
<td width="3"><img src="Images/right1.gif" width="3" height="29"></td> 21
</tr> 22
</table></td> 23
<td width="5"><img src="Images/z-top_right.gif" width="13" height="33"></td> 24
</tr> 25
<tr> 26
<td background="Images/z-center_left.gif"> </td> 27
<td height="470" valign="top" bgcolor="#FFFFFF"> 28
<DIV id=incontent-post> 29
<table width="100%" border="0" cellspacing="0" cellpadding="0"> 30
<tr> 31
<td colspan="2" class="postbg">当前位置:验证码设置</td> 32
</tr> 33
<tr> 34
<td width="150" height="30"><img src="Images/icon-left.gif" width="13" height="9">启用注册验证:</td> 35
<td> 36
<asp:RadioButton ID="RadioButton1" runat="server" Text="是" GroupName="group1" /> 37
<asp:RadioButton ID="RadioButton2" runat="server" Text="否" GroupName="group1" Checked="True" /></td> 38
</tr> 39
<tr> 40
<td height="30"><img src="Images/icon-left.gif" width="13" height="9">启用登录验证:</td> 41
<td> 42
<asp:RadioButton ID="RadioButton3" runat="server" Text="是" GroupName="group2" /> 43
<asp:RadioButton ID="RadioButton4" runat="server" Text="否" GroupName="group2" Checked="True" /></td> 44
</tr> 45
<tr> 46
<td height="30"><img src="Images/icon-left.gif" width="13" height="9">启用产品回复和发主题验证:</td> 47
<td> 48
<asp:RadioButton ID="RadioButton5" runat="server" Text="是" GroupName="group3" /> 49
<asp:RadioButton ID="RadioButton6" runat="server" Text="否" GroupName="group3" Checked="True" /></td> 50
</tr> 51
<tr> 52
<td height="30"> </td> 53
<td> 54
<asp:Button ID="Button1" runat="server" CssClass="button" Text="保存" OnClick="Button1_Click" /> 55
<input class="button" type="submit" name="Submit" value="取消"></td> 56
</tr> 57
</table> 58
</DIV> 59
</td> 60
<td background="Images/z-center_right.gif"> </td> 61
</tr> 62
</table> 63
</div> 64
</form> 65
</body> 66
</html> 67



