当我使用我的 Windows 窗体应用程序发布(第二次代码和平)时,当我使用 buttonclick 2 进入我的数据网格中获取学生集合时,没有任何显示我可以对成员进行硬编码并且获取没有问题,但我不能发布?当我为我的帖子单击 button1 时,我得到的回复在消息框中显示 OK?所以不太清楚我做了什么......
[WebInvoke(Method = "POST", BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = WebMessageFormat.Xml, ResponseFormat = WebMessageFormat.Xml, UriTemplate = "")]
void AddStudent(Student student);
XDocument xDoc = XDocument.Load(uri);
var students = xDoc.Descendants("Student")
.Select(n => new
{
StudentNo = n.Element("StudentID").Value,
Firstname = n.Element("FirstName").Value,
Surname = n.Element("LastName").Value
})
.ToList();
dataGridView1.DataSource = students;
}