我是ASP.NET新手,
我正在制作国家/地区下拉列表。
例如:对于特定国家/地区,我将从XML文件中读取该国家/地区的状态。
这是XMLFile.xml
<?xml version="1.0" encoding="utf-8" ?>
<countrys>
<country>India</country>
<state>
<text>Maharashtra</text>
<text>Kashmir</text>
<text>Goa</text>
</state>
<country>Sri Lanka</country>
<state>
<text>Kanady</text>
<text>Colombo</text>
<text>Galle</text>
</state>
<country>Australia</country>
<state>
<text>Sydney</text>
<text>Perth</text>
<text>Melbourne</text>
</state>
<country>South Africa</country>
<state>
<text>Capetown</text>
<text>Johanusburg</text>
<text>Durban</text>
</state>
</countrys>
和Country.aspx.cs
public partial class Country : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
LoadDropdown();
}
}
protected void LoadDropdown()
{
DataSet ds = new DataSet();
ds.ReadXml (Server.MapPath("XMLFile.xml"));
DropDownListCountry.DataTextField = "country";
DropDownListCountry.DataSource = ds;
DropDownListCountry.DataBind();
DropDownListCountry.Items.Insert(0,new ListItem(" Select ","0"));
}
}
protected void DropDownListCountry_SelectedIndexChanged(object sender, EventArgs e)
{
string st = (DropDownListCountry.SelectedIndex).ToString();
XDocument main = XDocument.Load(@"XMLFile.xml");
var query = from user in main.Descendants("country_text")
where st == user.Element("state").Value
select user;
DropDownListState.DataSource = query;
DropDownListState.DataBind();
}
}
错误: DataBinding:'System.Data.DataRowView'不包含名为'country'的属性。
答案 0 :(得分:1)
将其绑定到country_text
DropDownListCountry.DataTextField = "country_text";
数据集中有三个表。国家,州和文本。数据集中包含国家/地区值的字段是country_text,这就是您应该绑定到
的内容