Posted on: 9/11/2014 11:10:21 AM | Views : 447

hi 
i am use  asp.net vb and Fill Checkbox Than one Condition Add New Checkboxlist Item Add In Self .
GridView RowCommand Fire JavaScript Function.
ScriptManager.RegisterStartupScript(Me, Me.GetType(), "", "Confirm();", True)
Call Java Script 
JavaScript Using Show.
function Confirm() { var confirm_value = document.createElement("INPUT"); confirm_value.type = "hidden"; confirm_value.name = "confirm_value"; if (confirm("Do you want to Joint Filed Work ?")) { DisableCheckbox("YES") } else { DisableCheckbox("NO") } return false; }
function DisableCheckbox(Evnt) { var checkworkwith = document.getElementById('<%=chklstWorkwithDtl.ClientID%>').getElementsByTagName("input"); document.getElementById('<%=HdnjointWork.ClientID%>').value = Evnt; for (i = 0; ...

Go to the complete details ...