我从下面给出的javascript代码中调用了通用处理程序(ashx);
var xmlHttpReq = createXMLHttpRequest();
xmlHttpReq.open("GET", "hndlrCars.ashx, false);
xmlHttpReq.send(null);
xmlText = xmlHttpReq.responseText;
但我必须将参数(下拉选择值)从 .aspx 传递给通用处理程序的“ProcessRequest”方法。我该怎么做?