温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:NetShopForge网上商店程序(VB)源码
当前文件路径:NetShopForge/Website/Admin/ContentEditor.aspx

1<%@ Page Language="VB" ValidateRequest="false" AutoEventWireup="false" CodeFile="ContentEditor.aspx.vb" Inherits="Admin_ContentEditor" %> 2
<%@ Register Src="Controls/DatePickerControl.ascx" TagName="DatePickerControl" TagPrefix="uc1" %> 3
4
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 5
6
<html xmlns="http://www.w3.org/1999/xhtml" > 7
<head id="Head1" runat="server"> 8
<title></title> 9
</head> 10
<body onunload="refreshParent()"> 11
<form id="form1" runat="server"> 12
<div style="margin:10px;"> 13
<div> 14
<table border="0" cellpadding="0" cellspacing="0" style="width: 85%"> 15
<tr> 16
<td colspan="2" style="height: 338px" > 17
Text 18
<br /> 19
<asp:TextBox ID="txtAdText" runat="server" Height="307px" TextMode="MultiLine" Width="586px" 20
Wrap="False"></asp:TextBox></td> 21
</tr> 22
<tr> 23
<td align="left" colspan="2" valign="top"> 24
<br /> 25
<table border="0" cellpadding="0" cellspacing="0" style="width: 263px"> 26
<tr> 27
<td style="width: 100px; height: 22px"> 28
IsValid: 29
</td> 30
<td style="height: 22px"> 31
<asp:DropDownList ID="ddlIsValid" runat="server"> 32
<asp:ListItem Value="-1">是</asp:ListItem> 33
<asp:ListItem Value="0">否</asp:ListItem> 34
</asp:DropDownList></td> 35
</tr> 36
<tr> 37
<td style="width: 100px"> 38
DateExpire: 39
</td> 40
<td> 41
<uc1:DatePickerControl ID="dpExpire" runat="server" /> 42
</td> 43
</tr> 44
</table> 45
</td> 46
</tr> 47
48
<tr> 49
<td align="center" colspan="2" valign="top"> 50
<asp:button id="btnSave" runat="server" CausesValidation="False" Text="Save" Width="76px"></asp:button> 51
<input type="button" value="Close" onclick="parent.hidePopWin(false);parent.location.reload();" style="width: 85px" /></td> 52
</tr> 53
</table> 54
55
</div> 56
<div> 57
<asp:HiddenField ID="hfPlacement" runat="server" /> 58
<asp:HiddenField ID="hfPageName" runat="server" /> 59
<asp:HiddenField ID="hfAdID" runat="server" /> 60
61
</div> 62
</div> 63
</form> 64
</body> 65
</html>



