温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:WebQuest发布系统源码及文档
当前文件:
WebQuest/Admin/admin_webquests_edit.aspx,打开代码结构图
WebQuest/Admin/admin_webquests_edit.aspx,打开代码结构图1<%@ Page Language="C#" MasterPageFile="~/Admin/Admin.master" AutoEventWireup="true" CodeFile="admin_webquests_edit.aspx.cs" Inherits="admin_webquests_edit" Title="Quick-WebQuest" %> 2
3
<%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %> 4
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"> 5
<div id="main"> 6
<table style="width:700px ; text-align:left;"> 7
<tr> 8
<td style="width: 658px"> 9
标题<asp:TextBox ID="txtTitle" runat="server"></asp:TextBox></td> 10
<td colspan="2"> 11
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtTitle" 12
ErrorMessage="*必填"></asp:RequiredFieldValidator></td> 13
</tr> 14
<tr> 15
<td style="width: 658px"> 16
描述<FCKeditorV2:FCKeditor ID="FCKeditor2" runat="server" Height="300px"> 17
</FCKeditorV2:FCKeditor> 18
</td> 19
<td colspan="2"> 20
<asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ControlToValidate="FCKeditor2" 21
ErrorMessage="*必填"></asp:RequiredFieldValidator></td> 22
</tr> 23
<tr> 24
<td style="height: 38px; width: 658px;"> 25
学科<asp:DropDownList ID="ddlSubject" runat="server" Width="84px"> 26
</asp:DropDownList></td> 27
<td style="height: 38px" colspan="2"> 28
</td> 29
</tr> 30
<tr> 31
<td style="height: 38px; width: 658px;"> 32
模板<asp:DropDownList ID="ddlStyle" runat="server" Width="83px"> 33
</asp:DropDownList></td> 34
<td style="height: 38px"> 35
</td> 36
<td style="height: 38px"> 37
</td> 38
</tr> 39
<tr> 40
<td style="height: 38px; width: 658px;"> 41
模块<asp:DropDownList ID="ddlModel" runat="server" AutoPostBack="True" OnSelectedIndexChanged="ddlModel_SelectedIndexChanged"> 42
</asp:DropDownList> 43
<fckeditorv2:fckeditor id="FCKeditor1" runat="server" Height="300px"></fckeditorv2:fckeditor> 44
</td> 45
<td style="height: 38px" colspan="2"> 46
</td> 47
</tr> 48
<tr> 49
<td style="height: 38px; width: 658px;"> 50
<asp:Button ID="btnMod" runat="server" Text="更新" OnClick="btnMod_Click" /> 51
<asp:Label ID="lbTip" runat="server" ForeColor="Red"></asp:Label> 52
<asp:LinkButton ID="lbView" runat="server" OnClick="lbView_Click" ForeColor="Red" Enabled="False" Visible="False">预览</asp:LinkButton></td> 53
<td style="height: 38px"> 54
</td> 55
<td style="height: 38px"> 56
</td> 57
</tr> 58
</table> 59
</div> 60
</asp:Content> 61
62



