📄 diarypost.aspx
字号:
<%@ Page language="c#" Codebehind="diaryPost.aspx.cs" AutoEventWireup="false" Inherits="Club.ClubManage.Skin.diaryPost" %>
<input id="txtID" type="hidden" value="<%=DiaryID%>">
<div class="info">
<h2><%=DiaryID==0?"写Blog":"Blog编辑"%></h2>
<table width="100%" border="0" cellspacing="0" cellpadding="0" ID="Table1">
<tr>
<th>日期:</th>
<td><input id="txtPostDate" type="text" style="border:0px;width:80px;" value="<%=Info.PostDate.ToShortDateString()%>" readonly="">
<input type="button" onclick="GetCalendar('txtPostDate')" value="选择.." style="border:1px solid #ccc;background-color:#eee;"> </td>
</tr>
<TR>
<TH>
Blog标题:</TH>
<TD>
<INPUT id="txtTitle" type="text" size="40" dataType="Require" msg="TitleMsg,,Require," value="<%=Info.Title%>"><span id="TitleMsg"></span>
</TD>
</TR>
<tr>
<th>
天气:
</th>
<td>
<select id="txtWeather" dataType="Require" msg="WeatherMsg,,Require,">
</select><input id="editWeather" type="hidden" value="<%=Info.Weather%>">
<span id="WeatherMsg"></span>
</td>
</tr>
<tr>
<th>
心情:
</th>
<td>
<select id="txtMood" dataType="Require" msg="MoodMsg,,Require,">
</select><input id="editMood" type="hidden" value="<%=Info.Mood%>">
<span id="MoodMsg"></span>
</td>
</tr>
<tr>
<th>
Blog内容:
</th>
<td>
<textarea id="txtContent" name="content" style="display:none"><%=Info.Content%></textarea>
<iframe ID="Editor" name="Editor" src="HtmlEditor/index.html?ID=content" frameBorder="0" marginHeight="0" marginWidth="0" scrolling="No" style="height:320px;width:100%"></iframe>
</td>
</tr>
<tr>
<th>
是否公开:
</th>
<td>
<input class="btn_p" id="txtIsVisible" type="checkbox" <%=Info.IsVisible?"checked":""%><%=Info.ID==0?"checked":""%>>
</td>
</tr>
</table>
<div class="center"><INPUT type="submit" class="button" value="提交"><INPUT type="reset" class="button" value="重写"></div>
</div>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -