hi
in my asp age I'm using javascript that is below, I want to post data from one page to another using javascript post method?
below is the javascript i using..
In "test1.asp" page
<script type="text/javascript">
function Service_Add(Data_ID,Data_Type)
{
var Data_ID=Data_ID;
var Data_Type=Data_Type;
document.miformulario.submit();// here i wand to pass data some thing like this "Submit(Data_ID,Data_Type)"
}
</script>
I want to post "Data_ID" and "Data_Type" to my Test2.asp page
how i solve this problem? hoping for your response