缺少程序集参考System.Xml.XmlDocument

时间:2013-09-14 11:05:00

标签: asp.net

我试图在我的应用程序中使用Webservice。我正在将我的数据转换为XML元素并且正在传递,但我的智能感知并未检测到XmlDocument。 我的代码是

[WebMethod]
public XmlElement GetUserDetails(string userName)
{
    SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["dbconnection"].ToString());
    con.Open();
    SqlCommand cmd = new SqlCommand("select * from UserInformation where UserName like @userName+'%'", con);
    cmd.Parameters.AddWithValue("@userName", userName);
    cmd.ExecuteNonQuery();
    SqlDataAdapter da = new SqlDataAdapter(cmd);
    // Create an instance of DataSet.
    DataSet ds = new DataSet();
    da.Fill(ds);
    con.Close();
    // Return the DataSet as an XmlElement.
    XmlDataDocument xmldata = new XmlDataDocument(ds);
    XmlElement xmlElement = xmldata.DocumentElement;
    return xmlElement;
}

1 个答案:

答案 0 :(得分:0)

您应该在项目中添加对System.Xml.ddl的引用。