If I do a form post w/ a non asp.net control in webforms, how can I get the id of the control that triggered the event from the sender object?
Currently I'm adding a simple form post to my drop down list w/ jQuery and want a method to capture the specific control on the server side ...
$(document).ready(function()
{
$("*[id$='ddlEmployers']").change(
function(objEvent)
{
document.forms[0].submit();
}
);
});