Question : Firing jQuery on key press action

I'm trying to get this to fire using "onkeyup", here is my setup. My field is not getting set, not sure where my mistake is.

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
function setDirty(changeVal) {
                $('<%=dirtyField.ClientID %>').val(changeVal);
            }

<asp:HiddenField ID="dirtyField" runat="Server" />

                //set attributes for dirty detection in data changes
                txtReason.Attributes.Add("onkeyup", "setDirty(true);");
                txtAWB.Attributes.Add("onkeyup", "setDirty(true);");
                txtERP.Attributes.Add("onkeyup", "setDirty(true);");
                ddlPriority.Attributes.Add("onclick", "setDirty(true);");
                ddlCarrier.Attributes.Add("onclick", "setDirty(true);");

Answer : Firing jQuery on key press action

if your are trying from 192.168.x.x , then you have to add a route on the ASA

route inside 192.168.x.x 255.255.x.x  <gw>

to allow ICMP

policy-map global_policy
 class inspection_default
inspect icmp
Random Solutions  
 
programming4us programming4us