📄 userinfo.aspx
字号:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="userInfo.aspx.cs" Inherits="novel.userInfo" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>在线小说阅读</title>
</head>
<body background="image/background.jpg">
<form id="form1" runat="server">
<div>
<table style="width: 927px; height: 182px" border="1">
<tr>
<td colspan="3" style="background-image: url(image/logo.JPG); height: 82px">
</td>
</tr>
<tr>
<td colspan="3" style="background-image: url(image/rcol.gif); height: 21px">
<span style="font-size: 12px">用户信息</span></td>
</tr>
<tr>
<td colspan="3" style="height: 21px">
<asp:DataList ID="List_user" runat="server" BackColor="White" BorderColor="#CC9966"
BorderStyle="None" BorderWidth="1px" CellPadding="4" GridLines="Both" Height="253px"
RepeatColumns="2" Width="765px">
<FooterStyle BackColor="#FFFFCC" ForeColor="#330099" />
<SelectedItemStyle BackColor="#FFCC66" Font-Bold="True" ForeColor="#663399" />
<ItemTemplate>
<table style="width: 263px; height: 4px" border="1">
<tr>
<td style="height: 21px">
<span style="font-size: 12px">用户名称:</span></td>
<td colspan="2" style="height: 21px">
<asp:Label ID="Label1" runat="server" Font-Size="12px" Text='<%# Eval("username") %>'></asp:Label></td>
</tr>
<tr>
<td style="height: 30px">
<span style="font-size: 12px">用户类型:</span></td>
<td colspan="2" style="height: 30px">
<asp:Label ID="Label2" runat="server" Font-Size="12px" Text='<%# Eval("RoleName") %>'></asp:Label></td>
</tr>
<tr>
<td style="height: 26px">
<span style="font-size: 12px">用户邮件:</span></td>
<td colspan="2" style="height: 26px">
<asp:Label ID="Label3" runat="server" Font-Size="12px" Text='<%# Eval("mail") %>'></asp:Label></td>
</tr>
<tr>
<td style="height: 26px">
<span style="font-size: 12px">阅读积分:</span></td>
<td colspan="2" style="height: 26px">
<asp:Label ID="Label4" runat="server" Font-Size="12px" Text='<%# Eval("amount") %>'></asp:Label></td>
</tr>
</table>
</ItemTemplate>
<ItemStyle BackColor="White" ForeColor="#330099" />
<HeaderStyle BackColor="#990000" Font-Bold="True" ForeColor="#FFFFCC" />
</asp:DataList></td>
</tr>
<tr>
<td colspan="3" style="height: 21px; text-align: left">
<asp:DataList ID="List_topic" runat="server" CellPadding="4" ForeColor="#333333" OnSelectedIndexChanged="List_topic_SelectedIndexChanged">
<FooterStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
<SelectedItemStyle BackColor="#FFCC66" Font-Bold="True" ForeColor="Navy" />
<ItemTemplate>
<span style="font-size: 12px">
<img src="image/link.gif" />收费章节:</span>
<asp:HyperLink ID="HyperLink1" runat="server" Font-Size="12px" NavigateUrl='<%# "~/Read.aspx?chapterid="+Eval("chapterid") %>'
Text='<%# Eval("chapter") %>'></asp:HyperLink><span style="font-size: 12px"><<span
style="color: #ff3300">点击确定阅读,将会扣除您的20个阅读积分</span>></span>
</ItemTemplate>
<AlternatingItemStyle BackColor="White" />
<ItemStyle BackColor="#FFFBD6" ForeColor="#333333" />
<HeaderStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
</asp:DataList></td>
</tr>
<tr>
<td colspan="3" style="height: 21px">
</td>
</tr>
<tr>
<td colspan="3" style="background-image: url(image/rcol.gif); height: 21px">
<span style="font-size: 12px">积分管理</span></td>
</tr>
<tr>
<td style="height: 21px">
<span><span style="font-size: 12px">购买积分 <<span>购买<font
color="green">阅读积分<span
style="color: black">></span></font></span></span></span></td>
<td style="font-size: 12pt; height: 21px">
<span style="font-size: 12px">数量<asp:TextBox ID="buy" runat="server"></asp:TextBox>
分</span></td>
<td style="height: 21px">
<asp:Button ID="Button1" runat="server" Text="购买" OnClick="Button1_Click" /></td>
</tr>
<tr>
<td style="height: 21px">
<span style="font-size: 12px">兑换积分 < 兑换成<span><font
color="green">阅读积分<span
style="color: black">><asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem>活跃积分</asp:ListItem>
<asp:ListItem>写作积分</asp:ListItem>
</asp:DropDownList></span></font></span></span></td>
<td style="height: 21px">
<span style="font-size: 12px">数量</span><asp:TextBox ID="sel" runat="server"></asp:TextBox><span
style="font-size: 12px"> 分</span></td>
<td style="height: 21px">
<asp:Button ID="Button2" runat="server" Text="兑换" OnClick="Button2_Click" /></td>
</tr>
<tr>
<td style="height: 21px" colspan="3">
<span style="font-size: 12px; color: #ff3300">注:<br />
1、活跃积分和写作积分可兑换成阅读积分,但是阅读积分不可兑换成活跃积分和写作积分。<br />
2、阅读积分只用来阅读收费章节,不可转换成现实中的货币。</span></td>
</tr>
<tr>
<td style="height: 21px" colspan="3" rowspan="2">
</td>
</tr>
<tr>
</tr>
</table>
</div>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -