⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tokenform.aspx

📁 community server 源码
💻 ASPX
字号:
<%@ Register TagPrefix="CS" Namespace="CommunityServer.Controls" Assembly="CommunityServer.Controls" %>
<%@ Import Namespace="CommunityServer.Components" %>
<%@ Page language="c#" Codebehind="TokenForm.aspx.cs" AutoEventWireup="false" Inherits="CommunityServer.ControlPanel.Blogs.TokenForm" %>
<%@ Register TagPrefix="CP" Namespace="CommunityServer.ControlPanel.Controls" Assembly="CommunityServer.Web" %>
<CS:MPContainer runat="server" id="MPContainer" ThemeMasterFile="ControlPanelModalMaster.ascx" IsModal="true">
<CS:MPContent id="bcr" runat="server">
<DIV class="CommonContentArea">
<DIV class="CommonContent">
	<DIV class="CommonFormFieldName">
		<cp:helpicon id="hi1" runat="Server" resourcename="CP_Blog_TextParts_TextPartName_Help"></cp:helpicon>
		<CP:FormLabel id="fl1" runat="Server" ControlToLabel="TextPartBox" resourcename="CP_Blog_TextParts_TextPartName"></CP:FormLabel>
		<asp:RequiredFieldValidator id="TextPartValidator" Runat="server" ControlToValidate="TextPartBox" Display="Dynamic" />
		<asp:RegularExpressionValidator id="TextPartRegexValidator" runat="server" ControlToValidate="TextPartBox" Display="Dynamic" ValidationExpression="^[0-9a-zA-Z]{2,50}$" />
	</DIV>
	<DIV class="CommonFormField">
		<asp:TextBox id="TextPartBox" Runat="server" CssClass="ControlPanelTextInput" MaxLength="50" />
	</DIV>
	<br />
	<DIV class="CommonFormFieldName">
		<cp:helpicon id="hi2" runat="Server" resourcename="CP_Blog_TextParts_Link_Help"></cp:helpicon>
		<CP:FormLabel id="fl2" runat="Server" ControlToLabel="LinkBox" resourcename="CP_Blog_TextParts_Link" />
	</DIV>
	<DIV class="CommonFormField">
		<asp:TextBox id="LinkBox" Runat="server" CssClass="ControlPanelTextInput" MaxLength="255" />
	</DIV>
	<br />
	<DIV class="CommonFormFieldName">
		<cp:helpicon id="hi3" runat="Server" resourcename="CP_Blog_TextParts_Text_Help"></cp:helpicon>
		<CP:FormLabel id="fl3" runat="Server" ControlToLabel="TextDescBox" resourcename="CP_Blog_TextParts_Text"></CP:FormLabel>
		<asp:RequiredFieldValidator id="TextValidator" Runat="server" ControlToValidate="TextDescBox" Display="Dynamic" />
	</DIV>
	<DIV class="CommonFormField">
		<asp:TextBox id="TextDescBox" Runat="server" CssClass="ControlPanelTextInput" MaxLength="500" Rows="3" TextMode="MultiLine" />
	</DIV>
	<br />
	<DIV class="CommonFormField PanelSaveButton">
		<cp:resourcelinkbutton runat="server" id="SaveButton" cssclass="CommonTextButton" resourcename="Save"></cp:resourcelinkbutton>
	</DIV>
</DIV>
</DIV>
</CS:MPContent>
</CS:MPContainer>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -