I'm using .asp files, and when clicking a link in one of the .asp files, it's supposed to take you to another page. The function is:
Anyways, when you click the link, I'm getting the error of "The requested method POST is not allowed for the URL /gamestart/GameStart_Detail.asp."
So I've googled this and have seen many people actually have the problem, but not many fixes. I think you need to allow something with your webserver (hosted), so anyone know exactly how to allow this?
Code:
<!--
function selectcode(un){
document.select_frm.intSeq.value = un;
document.select_frm.action="GameStart_Detail.asp";
document.select_frm.method="post";
document.select_frm.submit();
}
//-->
Anyways, when you click the link, I'm getting the error of "The requested method POST is not allowed for the URL /gamestart/GameStart_Detail.asp."
So I've googled this and have seen many people actually have the problem, but not many fixes. I think you need to allow something with your webserver (hosted), so anyone know exactly how to allow this?