*教研密码: |
<%= new HtmlText("Password", this.ViewData["_Meeting.Password"], 255) { DefaultValue = "123456" }%>
<%= new HtmlYKTip("Password") %>
|
*主席密码: |
<%= new HtmlText("MasterPwd", this.ViewData["_Meeting.MasterPwd"], 255) { DefaultValue = "123456" }%>
<%= new HtmlYKTip("MasterPwd")%>
|
匿名登录: |
<%--<%= new HtmlCheckBox("GuestEnable", this.ViewData["_Meeting.GuestEnable"], 1, 0) { Class = ""}%>--%>
<%= new HtmlCheckBox("GuestEnable", false, 1, 0) { Class = ""}%>
|
公开上传: |
<%= new HtmlCheckBox("ShareUpload", this.ViewData["_Meeting.ShareUpload"], 1, 0) { Class = "" }%>
|
观看权限: |
<%= new HtmlRadio("Share", (this.ViewData["_Meeting.Share"].ToInt(0) == 0 ? true : false), 0, null) { ID = "Meeting_Share_0" }.Style(new { Width = "auto" })%>
<%--<%= new HtmlRadio("Share", (this.ViewData["_Meeting.Share"].ToInt(0) == 1 ? true : false), 1, null) { ID = "Meeting_Share_1" }.Style(new { Width = "auto" })%>
--%>
<%= new HtmlRadio("Share", (this.ViewData["_Meeting.Share"].ToInt(0) == 2 || this.ViewData["_Meeting.Share"] == null ? true : false), 2, null) { ID = "Meeting_Share_2" }.Style(new { Width = "auto" })%>
<%= new HtmlYKTip("Share") %>
|
<%--
教研类型: |
<%= new HtmlRadio("MeetingType", (this.ViewData["_Meeting.MeetingType"].ToInt(0) == 0 || this.ViewData["_Meeting.MeetingType"] == null ? true : false), 0, null) { ID = "Meeting_MeetingType_0" }.Style(new { Width = "auto" })%>
--%>
<%--<%= new HtmlRadio("Share", (this.ViewData["_Meeting.Share"].ToInt(0) == 1 ? true : false), 1, null) { ID = "Meeting_Share_1" }.Style(new { Width = "auto" })%>
--%>
<%-- <%= new HtmlRadio("MeetingType", (this.ViewData["_Meeting.MeetingType"].ToInt(0) == 1 ? true : false), 1, null) { ID = "Meeting_MeetingType_1" }.Style(new { Width = "auto" })%>
<%= new HtmlYKTip("MeetingType") %>
|
--%>
<%--
详细描述: |
<%= new HtmlTextArea("Description", this.ViewData["_Meeting.Description"], 2000)%>
|
--%>
<%--
排序号: |
<%= new HtmlText("SortNumber", this.ViewData["_Meeting.SortNumber"], 4) { DefaultValue = 0 }%>
<%= new HtmlYKTip("SortNumber") %>
|
--%>
标签用空格(" ")分开: |
<%= new HtmlText("MeetingTag", this.MeetingTag, 256) { }%>
|
所属课程: |
<%
foreach (var channel in this.ListAllChannel)
{
string parentChannelGuid = "";
if (channel.ParentChannel != null)
{
parentChannelGuid = channel.ParentChannel.Guid;
%>
-
<%= new HtmlCheckBox("Channel", this.SelectChannel.Contains(channel.Guid), channel.Guid, "") { ID = "Channel" + channel.Guid, Class = "ChannelItem ChannelItemChannel" + parentChannelGuid, Lang = channel.ParentChannel.Guid }.Style(new { Width = "auto" })%>
<%= new HtmlLabel("Channel" + channel.Guid, channel.Name)%>
<%
}
else
{
%>
-
<%= new HtmlCheckBox("Channel", this.SelectChannel.Contains(channel.Guid), channel.Guid, "") { ID = "Channel" + channel.Guid, Class = "ChannelMaster ChannelMaster" + channel.Guid }.Style(new { Width = "auto", Display="none" })%>
<%= new HtmlLabel("Channel" + channel.Guid, channel.Name)%>
<%
}
}
%>
|
所属学科: |
<%
foreach (var category in this.ListAllCategory)
{
string parentCategoryGuid = "";
if (category.ParentCategory != null)
{
parentCategoryGuid = category.ParentCategory.Guid;
%>
-
<%= new HtmlCheckBox("Category", this.SelectCategory.Contains(category.Guid), category.Guid, "") { ID = "Category" + category.Guid, Class = "CategoryItem CategoryItemCategory" + parentCategoryGuid, Lang = category.ParentCategory.Guid }.Style(new { Width = "auto" })%>
<%= new HtmlLabel("Category" + category.Guid, category.Name)%>
<%
}
else
{
%>
-
<%= new HtmlCheckBox("Category", this.SelectCategory.Contains(category.Guid), category.Guid, "") { ID = "Category" + category.Guid, Class = "CategoryMaster CategoryMaster" + category.Guid }.Style(new { Width = "auto", Display="none" })%>
<%= new HtmlLabel("Category" + category.Guid, category.Name)%>
<%
}
}
%>
|
<%--
海报图: |
|
--%>