📄 mo_style_manage.aspx
字号:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Mo_Style_Manage.aspx.cs" Inherits="YXShop.Web.Admin.Templates.Mo_Style_Manage" %>
<!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>Css样式管理</title>
<link href="../images/StyleAdmin.css" type="text/css" rel="stylesheet" />
<script src="../../js/prototype.js" type="text/javascript"></script>
<script type="text/javascript">
<!--
function showMsg(msg)
{
var i=confirm(msg);
if(i)
{
return true;
}
else
{
return false;
}
}
//-->
</script>
<style type="text/css">
.Tr
{
behavior: url(Tr.htc);
background-color: #EFF8FE;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="30" bgcolor="#DFEEFD">
<span lang="zh-cn"> <font color="#135294"><b>Css样式管理</b> </font> [<a
href="Mo_Style_Add.aspx">添加Css样式</a>] </span>
</td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="5" bgcolor="#DFEEFD">
</td>
<td height="200" valign="top" >
<table border="1" bordercolor="#e3e3e3" cellpadding="0" cellspacing="0" width="100%"
align="center" style="border: solid 1px #A3C7E2; border-collapse:collapse">
<tr bgcolor="#78B9E6" style="color: White" height="25">
<th>
编号
</th>
<th>
Css样式名称
</th>
<th>
对应方案
</th>
<th>
生成Css文件名称
</th>
<th>
是否默认
</th>
<th>
操作选项
</th>
</tr>
<asp:Repeater ID="Css_List" runat="server">
<ItemTemplate>
<tr class="Tr" align="center" height="25">
<td style="word-break: break-all" width="5%">
<%#Eval("Css_ID")%>
</td>
<td style="word-break: break-all" width="25%">
<%#Eval("Css_Name")%>
</td>
<td width="25%">
<%#ShowTP(Convert.ToString(Eval("Css_TP")))%>
</td>
<td width="25%">
<%#Eval("Css_FileName")%>.css
<br />
<font color="gray">调用路径为<u>[$WebDir$]Skins/<%#Eval("Css_FileName") %>.css</u></font>
</td>
<td width="8%">
<%#Convert.ToInt32(Eval("Css_IsDefault")) == 0 ? "×" : "√"%>
</td>
<td width="35%">
<a href="Mo_Style_Modi.aspx?Css_ID=<%#Eval("Css_ID") %>">修改样式内容</a><br />
<%#Convert.ToInt32(Eval("Css_IsDefault")) == 0 ? "<a href='?Css_ID=" + Eval("Css_ID") + "&action=del&cssName="+Eval("Css_FileName")+"' onclick='return showMsg(\"你确定要删除吗?\");'>删除</a>" : "<font color='gray'>删除</font>"%>
</td>
</tr>
</ItemTemplate>
</asp:Repeater>
</table>
</td>
<td width="5" bgcolor="#DFEEFD" >
</td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="8" bgcolor="#DFEEFD">
</td>
</tr>
</table>
</div>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -