Problem posting with Javascript
I'm trying to submit a form using Javascript but getting error
HTTP Error 403.14 - Forbidden
Basically the user will select an item which fires the javascript function which will send the info to this same page. The page would reload and do some processing based on the value passed. Am I missing something here?
Javascript function
function selectID2(txttemp) {
var txtvalue = " ";
txtvalue = txttemp;
document.frmMapCurrency.action = "MapCurrency.asp?CurrencyID=" + txtvalue;
document.frmMapCurrency.submit();
}
asp
<form name="frmMapCurrency"method="post">
|