Hi,
I would like to show alert message once return value is clear then it only will redirect to GameListing.aspx page, but there is no alert mesage out at all. any idea? thank you
Code in aspx.vb
If (return_value = "clear") Then
ClientScript.RegisterClientScriptBlock(Page.GetType, "Script", "<script language='javascript'>alert('Please follow up data in form');</script>")
Response.Redirect("GameListing.aspx?product_id=" + Request.QueryString("product_id"))
End If