public JsonResult GetScore(int StudentID = 0)
{
//fetch the score for the user
//--Call sendReport
//return the score to the calling method
}
public void SendReport(int StudentID = 0)
{
//Logic to get the detaied marks and prepare the report's PDF
//Mail the generated PDF back to student
}
在我的网络应用程序中,当学生点击分数时,学生将在屏幕上获得他/她的分数,并将详细报告的 PDF 邮寄到他/她的挂号信箱。
现在的问题是我想在后台运行 SendReport,这样学生就可以立即知道他/她的分数而无需等待。
我已经完成了这个问题,但它给了我无效论点的错误。