我在web服务中使用我的Windows痛苦应用程序。 在webservie中,我有以下课程:
public class User
{
private string lastName, firstName, email, password, cellPhone;
public User(string firstName, string lastName, string email, string phone, string password)
{
this.firstName = firstName;
this.lastName = lastName;
this.email = email;
this.cellPhone = phone;
this.password = password;
}
public User(){}
}
当我尝试在Windows商店应用程序中创建它的新内容时,我使用了以下代码:
ASMXWebServiceReference.User newUser = new ASMXWebServiceReference.User(FirstName.Text, LastName.Text, Email.Text, PhoneNumber.Text, Password.Password);
但我收到了这个错误:
'ASMXWebServiceReference.User'不包含构造函数 需要5个参数
当我使用默认构造函数创建新用户时,我没有出现该错误。 为什么以及如何解决?
答案 0 :(得分:0)
密码是文本框的名称,不是吗?我实际上没有看到像#34;密码"属于textbox类。你试过Password.Text吗?