How to open pop up alert box in chrome on button click event its working fine in mozila and IE but not working in chrome its open with address bar url not open in centered
my code below
protected void LinkButton3_Click(object sender, EventArgs e)
{
if (CheckBoxList1.SelectedValue == "" || CheckBoxList1.SelectedValue == null)
{
ScriptManager.RegisterStartupScript(this, GetType(), "showalert", "alert('Please select one module.');", true);
}
}
please provide me any code and suggest me ho ...
Go to the complete details ...