温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:达达ASP.NET简单新闻发布源码
当前文件路径:DaDaNews/Admin/EditNews.aspx

1<%@ Page Language="C#" MasterPageFile="./MasterPage.master"AutoEventWireup="true" CodeFile="EditNews.aspx.cs" Inherits="Admin_EditNews" %> 2
<%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %> 3
4
<asp:Content ID="EditNews" ContentPlaceHolderID="Conut1" runat="server"> 5
<table width="775" border="0" cellspacing="2" cellpadding="0"> 6
<tr> 7
<td colspan="2" align="center" class="Login1" height="25">添加新闻</td> 8
</tr> 9
<tr> 10
<td align="center" class="Login2" width="15%">新闻标题:</td> 11
<td align="left" class="Login2"> <asp:TextBox ID="Titel" runat="server" MaxLength="50" TextMode="SingleLine" Columns="50"></asp:TextBox></td> 12
</tr> 13
<tr> 14
<td align="center" class="Login2">新闻分类:</td> 15
<td align="left" class="Login2"> <asp:DropDownList ID="Class" runat="server" AutoPostBack="true"> 16
</asp:DropDownList> 17
<asp:HiddenField ID="HiddenField1" runat="server" /> 18
</td> 19
</tr> 20
<tr> 21
<td align="center" class="Login2" width="15%">新闻来源:</td> 22
<td align="left" class="Login2"> <asp:TextBox ID="ViewFrom" runat="server"></asp:TextBox></td> 23
</tr> 24
<tr> 25
<td align="center" class="Login2">新闻内容:</td> 26
<td align="left" class="Login2"> 27
<FCKeditorV2:FCKeditor ID="content" Height="400px" BasePath="/fckeditor/" runat="server" /> 28
</td> 29
</tr> 30
<tr> 31
<td colspan="2" align="center" class="Login1" height="25"> 32
<asp:Button ID="Button1" runat="server" Text="更新" OnClick="Button1_Click" /> 33
<input id="Reset1" type="reset" value="取消" onclick="history.go(-1);" /></td> 34
</tr> 35
</table> 36
</asp:Content> 37



