You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<script type="text/javascript">
function AdminshowAssignSold()
{
var answer = window.showModalDialog("AssignSold.aspx?ProID=<%=Request.QueryString("id") %>",null,
"dialogWidth:500px; dialogHeight:500px; center:yes");
answer.focus();
if (answer == "1")
location.reload();
}
</script>
Please assist on this . the pop up windows close automatically after finishing the click event from parent page :
<asp:Button ID="btnSold" runat="server" Text="Mark as SOLD" CausesValidation="False" />
vb.net:
btnSold.Attributes.Add("onClick", "AdminshowAssignSold();")
The text was updated successfully, but these errors were encountered:
Please assist on this . the pop up windows close automatically after finishing the click event from parent page :
<asp:Button ID="btnSold" runat="server" Text="Mark as SOLD" CausesValidation="False" />
vb.net:
btnSold.Attributes.Add("onClick", "AdminshowAssignSold();")
The text was updated successfully, but these errors were encountered: