sSqlstr += string.Format(@" and businessattr.value('(/Arch/Field[@Name=""发文单位$$""])[1]','varchar(50)') like '%{0}%'", Request.QueryString["FaWenDanWei"]);

 

  private string GetFaWenDanWei(string businessAttrXml)
    {
        string result = string.Empty;
        XmlDocument doc = new XmlDocument();
        doc.LoadXml(businessAttrXml);
        var node = doc.SelectSingleNode("Arch/Field[@Name='发文单位$$']");
        if (node != null)
        {
            result = node.InnerText;
        }
        return result;
    }

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-22
  • 2021-09-20
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-06-22
  • 2021-11-20
  • 2022-02-21
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案