jQueryを使用してonchangeイベントを動的に追加しています。テキストボックスを変更すると、イベントが2回発生し、2回のアラートボックスが3回発生することがあります。
if(Country.toUpperCase().indexOf("MALAYSIA")!=-1)
{ debugger;
if(productDesc.toUpperCase().indexOf("SV")!=-1)
{
$("#<%=txtlAxis.ClientID%>").change(function()
{
if(productDesc.toUpperCase().indexOf("SV")!=-1)
{
alert('2');
}
});
}
}