请看下面的代码。它在handler.asxh
。
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "application/json";
new RequestManagementFacade().PinRequest(Int32.Parse(context.Request.QueryString["requestId"]), (Boolean.Parse(context.Request.QueryString["isPinned"])));
}
这显示以下错误:
Value cannot be null. Parameter name: String
当我检查了上下文请求查询字符串时,传递了一些值,但是,代码在这个阶段中断了。
该处理程序将连接到业务逻辑层。