- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经构建了一些绑定(bind)到 linq 数据源的下拉列表。当我在 gridview 上选择一行时,将执行查询,然后应根据查询中的数据设置下拉列表选择。当我这样做时,RegionListBox 工作正常,但是当我尝试使用 .FindByName 设置其他三个列表框的 .Selected 属性时,它们似乎尚未按照操作顺序填充。当我注释掉下面代码中的三个“.FindByName”行时,代码运行没有问题,但当然没有选择下拉值。当我使用我的 3 行 findbyname 执行代码时,它在第一行出错,对象引用未设置为对象的实例。 - 在列表的项目集合上设置 watch ,显示为空
问题是:当 regionlistbox 项目选择已经填充时,为什么 dropdownlist 项目集合是空的?我应该何时/何地设置选定项以便填充下拉列表项集合?
protected void ItemGridView_RowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName == "Page")
return;
if (e.CommandName == "EditItem")
{
string[] commandArgs = e.CommandArgument.ToString().Split(new char[] { ',' });
ItemGridView.SelectedIndex = -1;
ItemGridView.SelectedIndex = int.Parse(commandArgs[1]);
ServiceListBox.ClearSelection();
RegionListBox.ClearSelection();
editPanel.Visible = true;
//query your database and store the result set in a DataTable
DasLinqClassesDataContext db = new DasLinqClassesDataContext();
var ItemRowSelected = db.GetItemForUserById(Session["CSPAttuid"].ToString(), int.Parse(commandArgs[0])).FirstOrDefault();
if (ItemRowSelected != null)
{
if (ItemRowSelected.region != null)
{
string[] RegionIds;
RegionIds = ItemRowSelected.region.Split(',');
foreach (string element in RegionIds)
{
RegionListBox.Items.FindByValue(element.ToString()).Selected = true;
}
}
fieldTitle.Text = ItemRowSelected.title;
fieldNewOverview.Text = ItemRowSelected.overview;
lblPreviewTitle.Text = ItemRowSelected.title;
lblPreviewAudience.Text = ItemRowSelected.audience;
lblPreviewRegion.Text = ItemRowSelected.region_name;
lblPreviewService.Text = ItemRowSelected.service;
lblPreviewOverview.Text = ItemRowSelected.overview;
lblPreviewDocument.Text = ItemRowSelected.doc;
lblPreviewAuthor.Text = ItemRowSelected.author_name;
//urgent checkbox / image
if (ItemRowSelected.urgent == true)
{
urgentEditImage.Visible = true;
checkUrgent.Checked = true;
urgentViewImage.Visible = true;
}
else
{
urgentEditImage.Visible = false;
checkUrgent.Checked = false;
urgentViewImage.Visible = false;
}
//audio hyperlink/image
if (ItemRowSelected.audio != null)
{
audioEditImage.Visible = true;
audioViewImage.Visible = true;
fieldAudio.Text = ItemRowSelected.audio.ToString();
}
else
{
audioEditImage.Visible = false;
audioViewImage.Visible = false;
fieldAudio.Text = "";
}
//document
if (ItemRowSelected.doc != null)
{
fieldDocument.Text = ItemRowSelected.doc;
fieldDocLink.Text = ItemRowSelected.link;
}
//service
if(ItemRowSelected.service != null)
{
ServiceListBox.Items.FindByText(ItemRowSelected.service.ToString()).Selected = true;
}
//audience
if (ItemRowSelected.audience != null)
{
ServiceListBox.Items.FindByText(ItemRowSelected.audience.ToString()).Selected = true;
}
//author
if (ItemRowSelected.author != null)
{
ServiceListBox.Items.FindByText(ItemRowSelected.author.ToString()).Selected = true;
}
}
hiddenId.Value = ItemRowSelected.id.ToString();
}
}
下面是下拉列表的一些页面代码:
.....d>
<td width=707 colspan=2 valign=top style='width:530.25pt;border:none;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal>
<b>
<asp:DropDownList ID="ServiceListBox" runat="server"
DataSourceID="LinqDsService" DataTextField="name" DataValueField="id">
</asp:DropDownList><asp:ImageButton ID="AddNewServiceToDropdown" runat="server"
CausesValidation="False" ImageUrl="~/images/addButton.png" />
<asp:ModalPopupExtender ID="ModalPopAddNewServiceToDropdown" runat="server"
BackgroundCssClass="modalBackground" CancelControlID="btnCancelService"
DynamicServicePath="" Enabled="True" PopupControlID="panAddService"
TargetControlID="AddNewServiceToDropdown">
</asp:ModalPopupExtender>
</span>
</b>
</p>
</td>
</tr>
<tr>
<td valign=top
style='border-left:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#FF6600;padding:0in 5.4pt 0in 5.4pt; border-top-style: none; border-top-color: inherit; border-top-width: medium; border-bottom-style: none; border-bottom-color: inherit; border-bottom-width: medium;'
class="style2">
<p class=MsoNormal>
<span style='font-family:"ClearviewATT","sans-serif"'>
<o:p> </o:p>
</span>
</p>
</td>
<td width=193 colspan=2 valign=top style='width:144.55pt;border:none;padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal>
<span style='font-size:11.0pt;font-family:"ClearviewATT LT","sans-serif"'>Overview:<o:p>
</o:p>
</span>
</p>
</td>
<td width=707 colspan=2 valign=top style='width:530.25pt;border:none;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal
style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; height: 52px; width: 602px;'>
<asp:TextBox ID="fieldNewOverview" TextMode="MultiLine" runat="server"
Width="600px"></asp:TextBox>
</p>
</td>
</tr>
<tr>
<td valign=top
style='border-left:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#FF6600;padding:0in 5.4pt 0in 5.4pt; border-top-style: none; border-top-color: inherit; border-top-width: medium; border-bottom-style: none; border-bottom-color: inherit; border-bottom-width: medium;'
class="style2">
<p class=MsoNormal>
<span style='font-family:"ClearviewATT","sans-serif"'>
<o:p> </o:p>
</span>
</p>
</td>
<td width=193 colspan=2 valign=top style='width:144.55pt;border:none;padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal>
<span style='font-size:11.0pt;font-family:"ClearviewATT LT","sans-serif"'>WIIFM (What’s In It For Me):<o:p>
</o:p>
</span>
</p>
</td>
<td width=707 colspan=2 valign=top style='width:530.25pt;border:none;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal>
<asp:TextBox ID="TextBox1" runat="server" Width="600px"></asp:TextBox>
</p>
</td>
</tr>
<!--- document number --->
<tr>
<td valign=top
style='border-left:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#FF6600;padding:0in 5.4pt 0in 5.4pt; border-top-style: none; border-top-color: inherit; border-top-width: medium; border-bottom-style: none; border-bottom-color: inherit; border-bottom-width: medium;'
class="style2">
<p class=MsoNormal>
<span style='font-family:"ClearviewATT","sans-serif"'>
<o:p> </o:p>
</span>
</p>
</td>
<td width=193 colspan=2 valign=top style='width:144.55pt;border:none;padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal>
<span style='font-size:11.0pt;font-family:"ClearviewATT LT","sans-serif"'>Document Number:<o:p>
</o:p>
</span>
</p>
</td>
<td width=707 colspan=2 valign=top style='width:530.25pt;border:none;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal>
<table>
<tr>
<td><span style='font-size:11.0pt;font-family:"ClearviewATT LT","sans-serif"'><asp:Label ID="Label3" runat="server" Text="Document Name"></asp:Label></span></td>
<td>
<asp:TextBox ID="fieldDocument" runat="server" Width="212px"></asp:TextBox>
</td>
</tr>
<tr>
<td><span style='font-size:11.0pt;font-family:"ClearviewATT LT","sans-serif"'><asp:Label ID="Label4" runat="server" Text="Hyperlink"></asp:Label></span></td>
<td><asp:TextBox ID="fieldDocLink" runat="server" Width="485px"></asp:TextBox></td></tr></table>
</p>
</td>
</tr>
<!--- author --->
<tr>
<td valign=top
style='border-left:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#FF6600;padding:0in 5.4pt 0in 5.4pt; border-top-style: none; border-top-color: inherit; border-top-width: medium; border-bottom-style: none; border-bottom-color: inherit; border-bottom-width: medium;'
class="style2">
<p class=MsoNormal>
</p>
</td>
<td width=193 colspan=2 valign=top style='width:144.55pt;border:none;padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal>
<span style='font-size:11.0pt;font-family:"ClearviewATT LT","sans-serif"'>Author:<o:p>
</o:p>
</span>
</p>
</td>
<td width=707 colspan=2 valign=top style='width:530.25pt;border:none;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal>
<asp:DropDownList ID="AuthorListBox" runat="server" DataSourceID="LinqDsAuthor"
DataTextField="name" DataValueField="id">
</asp:DropDownList> etc.....
这是 linq 数据源的一些页面代码:
<!---begin linqdatasources--->
<asp:LinqDataSource ID="Region" runat="server"
ContextTypeName="das.DasLinqClassesDataContext" EntityTypeName=""
Select="new (id, name)" TableName="ref_regions" Where="active == @active">
<WhereParameters>
<asp:Parameter DefaultValue="true" Name="active" Type="Boolean" />
</WhereParameters>
</asp:LinqDataSource>
<asp:LinqDataSource ID="LinqDsService" runat="server"
ContextTypeName="das.DasLinqClassesDataContext" EntityTypeName=""
Select="new (id, name, active)" TableName="ref_services"
Where="active == @active">
<WhereParameters>
<asp:Parameter DefaultValue="true" Name="active" Type="Boolean" />
</WhereParameters>
</asp:LinqDataSource>
<asp:LinqDataSource ID="LinqDsAudience" runat="server"
ContextTypeName="das.DasLinqClassesDataContext" EntityTypeName=""
Select="new (id, name, type)" TableName="ref_audiences"
Where="active == @active">
<WhereParameters>
<asp:Parameter DefaultValue="true" Name="active" Type="Boolean" />
</WhereParameters>
</asp:LinqDataSource>
<br />
<asp:LinqDataSource ID="LinqDsAuthor" runat="server"
ContextTypeName="das.DasLinqClassesDataContext" EntityTypeName=""
Select="new (id, name)" TableName="ref_authors" Where="active == @active">
<WhereParameters>
<asp:Parameter DefaultValue="true" Name="active" Type="Boolean" />
</WhereParameters>
</asp:LinqDataSource>
<!---end linqdatasources--->
最佳答案
使用:
ServiceListBox.SelectedIndex = ServiceListBox.Items.IndexOf(ServiceListBox.Items.FindByText(ItemRowSelected.service.ToString()));
代替
ServiceListBox.Items.FindByText(ItemRowSelected.service.ToString()).Selected = true;
不知道为什么,但现在使用上面的新代码可以正常工作
关于c# - FindByName 或 FindByValue set.selected on dropdownlist 返回错误 Object reference not set to an instance of an object,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11587312/
我知道我的问题有点含糊,但我不知道如何描述它。我问过很多地方,但似乎没有人理解我为什么要这样做。但请耐心等待,我会解释为什么我想要这样的东西。 我使用 Liquid Templates 允许用户在我的
这个问题在这里已经有了答案: what is the difference between null != object and object!=null [duplicate] (2 个回答) 7年
当我在我的本地主机 Google App Engine 应用程序中将日志记录级别更改为 FINE 时,我开始在我的跟踪堆栈中看到这些: Apr 17, 2013 4:54:20 PM com.goog
Python 有内置函数 type : class type(object) With one argument, return the type of an object. The return v
我正在使用深度学习进行语义分割,我遇到了以下术语:语义分割、实例检测、对象检测 和对象分割. 它们有什么区别? 最佳答案 这些术语的某些用法对用户而言是主观的或依赖于上下文,但据我所知对这些术语的合理
我面临 -[NSConcreteMutableData release] 的问题:消息发送到已释放的实例,我也附上了我的示例代码。 - (IBAction)uploadImage { NSString
我试图显示模型中的单个实例(数据库行),其中多个实例共享多行的相同字段(列)值。为了澄清这一说法,我有以下情况: ID/Title/Slug/Modified 1 Car A 1s ag
我正在尝试使用mockito来模拟服务。然而,我没有找到一种方法来告诉mockito,给定一个类的实例返回给我相同的实例: 类似于: given(service.add(any(Individua
我知道如何从父类(super class)原型(prototype)创建子类原型(prototype)。但是,如果我已经有了父类(super class)对象的实例来创建子类对象怎么办? 在 JS 中
鉴于 Kotlin 1.1。对于某个类的 instance,instance::class.java 和 instance.javaClass 似乎几乎是等价的: val i = 0 println(
这个问题在这里已经有了答案: 8年前关闭。 Possible Duplicate: Find out the instance id from within an ec2 machine 我正在寻找从
为什么我的 Instantiate 函数没有创建 That 的“空白”实例? 我有以下最小类: classdef That < handle properties This = '' end
Session session = HibernateUtil.getSessionFactory().openSession(); Transaction tx = session.beginTra
考虑以下几点: public class A { public String name = "i am a A instance"; } public class B extends A {
我正在使用 Scalr 来扩展网站服务器。 在 Apache 服务器上,我安装了 Sakai,并为 Linux 机器创建了一个启动脚本。 问题是,如何确保MySQL实例在Apache服务器启动之前启动
Android Realm DB 允许使用 Realm.getInstance() 获取多个实例。这些中的最佳实践是什么? :1.创建单个实例(应用程序范围)并在任何地方使用它2. 在需要时获取一个新
我很难理解为什么修改实例 a 中的属性会修改实例 b 中的相同属性。 var A = function (){ }; A.prototype.data = { value : 0 }; var
我将 Weka 用作更长管道的一部分,因此,我无法承受将所有数据写入文件或数据库只是为了创建一个 Instances。目的。我可以即时做的是创建 Instance 的列表对象。 来自 this pag
class C: def func(self, a): print(a) c = C() print(c.__dict__) # {} c.func = c.func # c.func i
Angular Routing 文档提到了组件实例创建、组件实例激活和路由激活。 文档没有解释这些概念的区别,以及每次创建/激活发生的时间。 问题 实例创建和实例激活有什么区别? 实例激活和路由激活有
我是一名优秀的程序员,十分优秀!