A bit of a newbie question but I am confused here.
I understand how post/get requests works.
I am trying to understand this code for test.aspx
:
....
Response.Write("<script type='text/javascript'>");
Response.Write("function submitForm()");
Response.Write("{");
Response.Write("document.form4.submit();");
Response.Write("}");
Response.Write("submitForm();");
Response.Write("</script>");
Where form4
is a form thats action is a post call to some webservice(testWebservice).
So I am a bit confused, If i call test.aspx the response I should get is the response from the webservice testWebservice ?
Sorry if i am not clear enough let me know.