客户端html和服务器端C#的POST方法之间有什么区别

时间:2019-01-06 08:40:39

标签: c# html asp.net

html发布方法

?- Who was the secretary of the department.
Who = diana.

C#发布方法

<script type="text/javascript">
function submitdata() {
        document.tp_form.submit();
    }
</script>

<form name="tp_form" action="someurl" method="post" id="form_id">
<table>
<tr>
//// In td i send all the same parameter as which send from C# 
<td>User ID : <input type="text" name="user_id" value="test"><br></td>
<td>Order No : <input type="text" name="order_no" value=""></td>
</tr>
<tr>
<td><input type="button" name="hash" value="hash" onClick="submitdata();" > </td>
</tr>

</table>
</form>

当我从HTML中进行发布时,它将重定向到“付款页面”,但是当我从C#中进行处理时,却没有重定向,这给了我错误。在两种情况下,参数都相同。

HTML和C#这两种方式有什么区别

0 个答案:

没有答案