Я сопоставляю в asp gridView элементы следующего xml:
<?xml version="1.0" encoding="utf-8"?>
<grammar xmlns="http://www.w3.org/2001/06/grammar" version="1.0" xml:lang="es-MX" mode="voice" tag-format="semantics/1.0" root="grmVoz">
<rule id="grmVoz" scope="public">
<ruleref uri="#rule1" />
<tag>out.cxtag=rules.rule1;out.rule1=rules.rule1;</tag>
</rule>
<rule id="rule1">
<tag>out='';</tag>
<one-of>
<item weight="1.0">Ivan Alberto<tag>out+="out1"</tag></item>
<item weight="1.0">Ivan Alberto2<tag>out+="out2"</tag></item>
<item weight="1.0">Ivan Alberto3<tag>out+="out3"</tag></item>
<item weight="1.0">Ivan Alberto4<tag>out+="out4"</tag></item>
</one-of>
</rule>
</grammar>
Я пытаюсь удалить определенный элемент, когда нажимаю кнопку удаления в gridView.
это мой код:
protected void gvGrammars_RowDeleting(object sender, GridViewDeleteEventArgs e)
{
GridViewRow row = (GridViewRow)gvGrammars.Rows[e.RowIndex];
string valor = row.Cells[0].Text;
XDocument xdoc = XDocument.Load(Server.MapPath("voiceGrammar.grxml"));
xdoc.Descendants("grammar").Elements("rule")
.Where(x => (string)x.Attribute("id") == "rule1").Elements("one-of").Elements("item").Where(y=> (string)y.Value == valor)
.Remove();
xdoc.Save(Server.MapPath("voiceGrammar.grxml"));
}
, но ничего не произошло.
Я использовал вместо Desendant:
xdoc.Elements("grammar")
пожалуйста, проверьте, не пропустил ли я что-то.Заранее спасибо.