相同的代码在1 proj中工作,而不在其他中。任何其他方式来写这个。 我收到的错误是错误CS1729:'评估'不包含带12个参数的构造函数。同样,当我复制到一个差异proj它编译和运作良好。试图清理临时的asp.net文件,但没有帮助。错误cs1729不包含构造函数
public class Assessment
{
public Assessment(Guid assessmentId,string applicationId,string assessmentType, Guid requestedBy,DateTime requestedDate,Guid assessmentOwner,string applicationToTest,
bool isCompleted,DateTime dateScheduled,DateTime datePerformed, GuidperformedBy, string uri)
{
this.AssessmentId = assessmentId; this.ApplicationId = applicationId;
this.AssessmentType = assessmentType; this.RequestedBy = requestedBy;
this.RequestedDate = requestedDate; this.AssessmentOwner = assessmentOwner;
this.ApplicationToTest = applicationToTest; this.IsCompleted = isCompleted;
this.DateScheduled = dateScheduled; this.DatePerformed = datePerformed;
this.PerformedBy = performedBy; this.uri = uri;
}
public Assessment()
{
this.AssessmentId = Guid.NewGuid(); this.ApplicationId = string.Empty;
this.AssessmentType = string.Empty; this.RequestedBy = Guid.NewGuid();
this.RequestedDate = DateTime.Now; this.AssessmentOwner = Guid.NewGuid();
this.ApplicationToTest = string.Empty; this.IsCompleted = false;
this.DateScheduled = Convert.ToDateTime(DateScheduled);
this.DatePerformed = Convert.ToDateTime(DatePerformed);
this.PerformedBy = Guid.NewGuid(); this.uri = string.Empty;
}
public Guid AssessmentId { get; set; }
public string ApplicationId {get; set; }
public string AssessmentType {get; set; }
public Guid RequestedBy { get; set; }
public DateTime RequestedDate {get; set; }
public Guid AssessmentOwner {get; set; }
public string ApplicationToTest {get; set; }
public bool IsCompleted { get; set; }
public DateTime DateScheduled {get; set; }
public DateTime DatePerformed { get; set; }
public Guid PerformedBy { get; set; }
public string uri { get; set; }
}
aspx.cs
protected void bnSubmit_Click(object sender, EventArgs e)
{
Assessment asst = new Assessment(Guid.Parse(AssessmentId.Text),
txtApplicationID.Text,
DropDownList1.SelectedValue,
requestedBy,
DateTime.Now,
Guid.Parse(txtAssessmentOwnerEmail.Text),
ddlApplicationToTest.SelectedValue,
false,
CalendarExtender1.SelectedDate.GetValueOrDefault(),
CalendarExtender2.SelectedDate.GetValueOrDefault(),
Guid.Parse(txtPerfomedBy.Text),
txtUri.Text);
db.AddAssessment(asst);
}
继续并添加缺少的'}',看看会发生什么。 – Hogan
抱歉在哪里}缺失。那个在设置后关闭。我dint发布,因为它会很长 – user2340141
代码是好的,所以尝试重新启动你的VS. – aef