asp.net webapi表单丢失数据

时间:2017-07-11 05:52:55

标签: asp.net-web-api

我使用表单发布数据到asp.net。     像



   

<pre>
    <form method="post" url="apiurl">
    <input name="pwd" value="4QrcOUm6Wau+VuBX8g+IPg=="/>
    </form>`enter code here`
</pre>
&#13;
&#13;
&#13; 但我得到的pwd值是&#34; 4QrcOUm6Wau VuBX8g IPg ==&#34;在服务器上。加分失去了!     为什么呢?

1 个答案:

答案 0 :(得分:0)

尝试将加号更改为其URL编码对应项,例如:

4QrcOUm6Wau%2bVuBX8g%2bIPg==

通常在URL中使用加号来表示空格,因此这可能就是这里发生的事情。