asp.net错误记录

//登录 jquery-ajax post请求后台无法获取数据,get就可以!!!
原因:
get方法,后台接收用Request.QueryString["para1"];
post方法,后台接收用Request.Form["para2"];
Request["para3"] get,post通用。

//手机号text无法输入,且不报错。原因:用于手机拍照的 capture="camera" 字母书写错误。
因:
<input id="file0" class="file-3" type="file" size="30" accept="image/*" capture="camera" />
果:
<li><span>手机号</span>
<input type="text" id="Phone" tabindex="1" class="input_key" maxlength="100" />
</li>



原文地址:https://www.cnblogs.com/hao-1234-1234/p/6772661.html