diarypost.aspx

来自「1、用SQL查询器打开install目录下的dooogo.sql运行之后创建数据」· ASPX 代码 · 共 58 行

ASPX
58
字号
<%@ 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 + =
减小字号Ctrl + -
显示快捷键?