{
break;
}
for (int j = 0; j <= ln_cdsl - 1; j++)
{
if (lc_cd[j].Length == 3)
{
if (lc_cd2[i] == lc_cd[j].Substring(0, 2) && ln_yj[j] == 0)
{
ln_bj = 0;
break;
}
else
{
ln_bj = 1;
}
}
else
{
ln_bj = 1;
}
}
}
if (ln_bj == 1)
{
MessageBox.Show("菜单授权不完整,上级已授权所属下级没有授 !", "系统提
示", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
return;
}
XElement jsFile = XElement.Load(@"ftp://100.100.0.1/yhcd1/XMLJssj.xml");
try
{
foreach (var cl in jsFile.Elements("jsbm"))
{
if (cl.Value.ToString() == lc_jsbm)
{
cl.SetAttributeValue("cdbm", lc_cdbms); //修改属性
}
|