📄 admin_config.aspx
字号:
<td colspan="2">
<asp:LinkButton ID="LinkButton1" runat="server" CommandName="Update" Text="保存" />
</td>
</tr>
</table>
</div>
<div id="shop_config" style=" display:none;">
<h2 class="tab">商城设置</h2>
<script type="text/javascript">
// tabPane1.addTabPage( document.getElementById( "shop_config" ) );
</script>
<table class="adminform" width="100%">
<tr>
<td style="width: 168px">确认订单时站内短信/Email通知内容::</td>
<td>
<asp:TextBox ID="MessageOfOrderConfirm" TextMode="MultiLine" Height="50px" Width="400px" runat="server" Text='<%# Bind("MessageOfOrderConfirm") %>' CssClass="text_area" />
</td>
</tr>
<tr>
<td style="width: 168px">收到银行汇款时站内短信/Email通知内容::</td>
<td>
<asp:TextBox ID="MessageOfReceiveMoney" TextMode="MultiLine" Height="50px" Width="400px" runat="server" Text='<%# Bind("MessageOfReceiveMoney") %>' CssClass="text_area" />
</td>
</tr>
<tr>
<td style="width: 168px">退货时站内短信/Email通知内容::</td>
<td>
<asp:TextBox ID="MessageOfRefund" TextMode="MultiLine" Height="50px" Width="400px" runat="server" Text='<%# Bind("MessageOfRefund") %>' CssClass="text_area" />
</td>
</tr>
<tr>
<td style="width: 168px">发出货物时站内短信/Email通知内容::</td>
<td>
<asp:TextBox ID="MessageOfDeliver" TextMode="MultiLine" Height="50px" Width="400px" runat="server" Text='<%# Bind("MessageOfDeliver") %>' CssClass="text_area" />
</td>
</tr>
<tr>
<td style="width: 168px">交付充值卡时站内短信/Email通知内容::</td>
<td>
<asp:TextBox ID="MessageOfSendCard" TextMode="MultiLine" Height="50px" Width="400px" runat="server" Text='<%# Bind("MessageOfSendCard") %>' CssClass="text_area" />
</td>
</tr>
<tr>
<td style="width: 168px">绑定Email时发送Email通知内容::</td>
<td>
<asp:TextBox ID="MessageOfConfrimEmail" TextMode="MultiLine" Height="50px" Width="400px" runat="server" Text='<%# Bind("MessageOfConfrimEmail") %>' CssClass="text_area" />
</td>
</tr>
<tr>
<td style="width: 168px">忘记密码发送Email通知内容::</td>
<td>
<asp:TextBox ID="MessageOfConfrimPassword" TextMode="MultiLine" Height="50px" Width="400px" runat="server" Text='<%# Bind("MessageOfConfrimPassword") %>' CssClass="text_area" />
</td>
</tr>
<tr>
<td colspan="2">
<asp:LinkButton ID="LinkButton2" runat="server" CommandName="Update" Text="保存" />
</td>
</tr>
</table>
</div>
</div>
</EditItemTemplate>
</asp:FormView>
</fieldset>
<div id="help1" style="position:absolute;z-index:1000; border:solid 1px black; padding:10px; background:white; display:none;" onmouseover="this.style.display='';" onmouseout="this.style.display='none'">
什么叫域名?比如你的网址是www.ABC.com那么ABC.com则为你的顶级域名。<br />
二级域名则是你的顶级域名的前字符和“.”所组成如bbs.ABC.com ,blog.ABC.com,
</div>
<div id="help2" style="position:absolute;z-index:1000; border:solid 1px black; padding:10px; background:white; display:none;" onmouseover="this.style.display='';" onmouseout="this.style.display='none'">
若不想出现导航条则可以选择同步登录,则整合方式为登录某一系统后则全部整合系统同时登录,则不会出现导航条
</div>
<script type="text/javascript">
function CreateSecurityCode(CodeType)
{
var s = (new Date()).toGMTString();
s += location.href;
s += navigator.appVersion;
if(CodeType=="font")
{
document.getElementById("ctl00_ContentPlaceHolder1_FormView1_SecurityKey").value = randomChar(16);
}
else if(CodeType="admin")
{
document.getElementById("ctl00_ContentPlaceHolder1_FormView1_AdminSecurityKey").value = randomChar(16);
}
}
function copyCcode(CodeType)
{
var obj;
if(CodeType=="font")
{
obj=document.getElementById("ctl00_ContentPlaceHolder1_FormView1_SecurityKey");
}
else if(CodeType="admin")
{
obj=document.getElementById("ctl00_ContentPlaceHolder1_FormView1_AdminSecurityKey");
}
obj.focus();
obj.select();
document.execCommand("copy");
}
function clearCcode(CodeType)
{
var obj;
if(CodeType=="font")
{
obj=document.getElementById("ctl00_ContentPlaceHolder1_FormView1_SecurityKey");
}
else if(CodeType="admin")
{
obj=document.getElementById("ctl00_ContentPlaceHolder1_FormView1_AdminSecurityKey");
}
obj.value="";
}
function randomChar(len) {
var x="0123456789poiuytrewqasdfghjklmnbvcxzQWERTYUIOPLKJHGFDSAZXCVBNM";
var tmp="";
for(var i=0;i< len;i++) {
tmp += x.charAt(Math.ceil(Math.random()*100000000)%x.length);
}
return tmp;
}
</script>
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server" SelectMethod="GetSiteConfig"
TypeName="SetupBLL" UpdateMethod="UpdateSetup" OnUpdated="UpdateOK">
<UpdateParameters>
<asp:Parameter Name="CloseSite" Type="Int32" />
<asp:Parameter Name="CloseMessage" Type="String" />
<asp:Parameter Name="SiteName" Type="String" />
<asp:Parameter Name="SiteUrl" Type="String" />
<asp:Parameter Name="LogoUrl" Type="String" />
<asp:Parameter Name="BannerUrl" Type="String" />
<asp:Parameter Name="WebMasterName" Type="String" />
<asp:Parameter Name="WebMasterEmail" Type="String" />
<asp:Parameter Name="CopyRight" Type="String" />
<asp:Parameter Name="VersionType" Type="Int32" />
<asp:Parameter Name="SiteKey" Type="String" />
<asp:Parameter Name="AdminDir" Type="String" />
<asp:Parameter Name="EnableLoginCheckCode" Type="Int32" />
<asp:Parameter Name="TryLoginTimes" Type="Int32" />
<asp:Parameter Name="LoginIPBan" Type="String" />
<asp:Parameter Name="LoginInterval" Type="Int32" />
<asp:Parameter Name="LoginIPAccess" Type="String" />
<asp:Parameter Name="EnableReg" Type="Int32" />
<asp:Parameter Name="EnableRegCode" Type="Int32" />
<asp:Parameter Name="EnableEmailOnce" Type="Int32" />
<asp:Parameter Name="EnablePasswordCheck" Type="Int32" />
<asp:Parameter Name="RegConfirm" Type="Int32" />
<asp:Parameter Name="RegEmailContent" Type="String" />
<asp:Parameter Name="RegPresent1" Type="Int32" />
<asp:Parameter Name="RegPresent2" Type="Int32" />
<asp:Parameter Name="RegPresent3" Type="Int32" />
<asp:Parameter Name="RegPresent4" Type="Int32" />
<asp:Parameter Name="RegNameSet" Type="Int32" />
<asp:Parameter Name="RegURLSet" Type="Int32" />
<asp:Parameter Name="RegURl" Type="String" />
<asp:Parameter Name="RegIPOnce" Type="Int32" />
<asp:Parameter Name="RegSendMsg" Type="Int32" />
<asp:Parameter Name="RegMsgContent" Type="String" />
<asp:Parameter Name="RegAnswerCheck" Type="Int32" />
<asp:Parameter Name="RegQuestion" Type="String" />
<asp:Parameter Name="RegAnswer" Type="String" />
<asp:Parameter Name="RegProtocalContent" Type="String" />
<asp:Parameter Name="RegBanEmail" Type="String" />
<asp:Parameter Name="RegBanName" Type="String" />
<asp:Parameter Name="RegNameMin" Type="Int32" />
<asp:Parameter Name="RegNameMax" Type="Int32" />
<asp:Parameter Name="RegItems" Type="String" />
<asp:Parameter Name="EnableRegSelectItem" Type="Int32" DefaultValue="1"/>
<asp:Parameter Name="MailObject" Type="String" />
<asp:Parameter Name="MailSmtpServer" Type="String" />
<asp:Parameter Name="MailServerUserName" Type="String" />
<asp:Parameter Name="MailServerPassWord" Type="String" />
<asp:Parameter Name="MailServerFrom" Type="String" />
<asp:Parameter Name="GuestBookEnable" Type="Int32" />
<asp:Parameter Name="GuestBookEnableVistor" Type="Int32" />
<asp:Parameter Name="GuestBookCheckCode" Type="Int32" />
<asp:Parameter Name="GuestBookCheck" Type="Int32" />
<asp:Parameter Name="GuestBookShowIP" Type="Int32" />
<asp:Parameter Name="SystemSet" Type="String" />
<asp:Parameter Name="WebLiveSet" Type="Int32" />
<asp:Parameter Name="id" Type="Int32" />
<asp:Parameter Name="SecurityKey" Type="String" />
<asp:Parameter Name="AdminSecurityKey" Type="String" />
<asp:Parameter Name="DomainName" Type="String" />
<asp:Parameter Name="HLIntegration" Type="Int32" />
<asp:Parameter Name="MessageOfOrderConfirm" Type="String" />
<asp:Parameter Name="MessageOfReceiveMoney" Type="String" />
<asp:Parameter Name="MessageOfRefund" Type="String" />
<asp:Parameter Name="MessageOfDeliver" Type="String" />
<asp:Parameter Name="MessageOfConfrimEmail" Type="String" />
<asp:Parameter Name="MessageOfConfrimPassword" Type="String" />
<asp:Parameter Name="MessageOfSendCard" Type="String" />
<asp:Parameter Name="RegPageSet" Type="String" />
</UpdateParameters>
</asp:ObjectDataSource>
</asp:Content>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -