Possible Duplicate:
button javasript works on IE but not firefox window.navigate()
I want pass Question ID to Answer Page Along with URL but it's not working on Chrome and Firefox I'm using ASP.Net,
Navigate Method is not working , what are other methods for this ?
function display(QuestionID)
{
window.navigate("Answer.aspx?TutID=" + QuestionID);
}
please Help
Try this:
var url = "Answer.aspx?TutID=" + QuestionID;
location.href = url;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With