我正在制作国家/地区下拉列表。
例如:对于特定国家/地区,我将从以下XML文件中读取该国家/地区的状态是我的代码
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
string st = (DropDownList1.SelectedIndex).ToString();
XDocument main = XDocument.Load((Server.MapPath(@"XMLFile1.xml")));
var query = from user in main.Descendants("country")
where st == user.Element("state").Value --//i am getting an error here like object
select user; reference not set to an instance object
DropDownList2.DataSource = query;
DropDownList2.DataBind();
}
OP的XML(Chuck评论中提供的链接):bind dropdownlist using XML
答案 0 :(得分:2)
如果您在xml文件中使用命名空间,则以下内容可能会对您有所帮助。
XNamespace ns = "url";// the url is the namespace path for your namespace
var query = from user in main.Descendants("country")
from state in user.Elements("state")
where state.Value == "st"
select user;
答案 1 :(得分:0)
您需要发布XML,但当前的问题是用户没有孩子.Element("state")
,因此您尝试为该用户引用null.Value
。
这个Xml库可以帮助您:https://github.com/ChuckSavage/XmlLib/
使用以下代码,您可以获得所需的项目。
string country = "Sri Lanka";
XElement root = XElement.Load(Server.MapPath(@"XMLFile1.xml"));
XElement xcountry = root.XPathElement("//country[.={0}]", country);
或者
XElement xcountry = root.Descendants("country")
.FirstOrDefault(user => user.Value == country);
然后
XElement state = (XElement)xcountry.NextNode;
string[] states = state.Elements("text").Select(xtext => xtext.Value).ToArray();
然后你可能将状态绑定为数据源。
答案 2 :(得分:0)
根据经验,您最好使用“SelectMany”解决方案来避免检查节点的存在
var query = from user in main.Descendants("country")
from state in user.Elements("state")
where state.Value == st
select user;
如果节点不存在,users.Elements(“state”)将为空(非空),因此用户节点将不包含在where子句中
100%纯Linq,无默认值
编辑:在Chuck的回答评论中从xml形状中获取新信息,请求应该是
var query = from user in main.Descendants("country")
from state in user.Elements("state")
from text in state.Elements("text")
where text.Value == st
select user;
编辑2:我的不好,xml没有完全分层......