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

1<%@ Page Language="C#" MasterPageFile="./MasterPage.master" AutoEventWireup="true" CodeFile="AddView.aspx.cs" Inherits="Admin_AddView" Debug="true"%> 2
<%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %> 3
4
<asp:Content ID="AddView" 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
<!--隐藏参数ID--> 18
<asp:HiddenField ID="HiddenField1" runat="server" /> 19
</td> 20
</tr> 21
<tr> 22
<td align="center" class="Login2" width="15%">新闻来源:</td> 23
<td align="left" class="Login2"> <asp:TextBox ID="ViewFrom" runat="server" /></td> 24
</tr> 25
<tr> 26
<td align="center" class="Login2">新闻内容:</td> 27
<td align="left" class="Login2"> 28
<FCKeditorV2:FCKeditor ID="content" Height="400px" BasePath="/fckeditor/" runat="server" /> 29
</td> 30
</tr> 31
<tr> 32
<td colspan="2" align="center" class="Login1" height="25"> 33
<asp:Button ID="Button1" runat="server" Text="提交" OnClick="Button1_Click" /> 34
<input id="Reset1" type="reset" value="取消" onclick="history.go(-1);" /></td> 35
</tr> 36
</table> 37
<!--download from 51aspx.com(51aspx.com)--> 38
39
</asp:Content> 40
41



