aspx Request.Form.Count=0
aspx Request.Form.Count=0
我在提交表单时没有收到任何数据。我希望 Request.Form.Count=2
,但是 RequestForm.Count=0
。
如有任何帮助,我们将不胜感激。
<%@ Page Language="VB" EnableViewState="false" AutoEventWireup="false" CodeFile="Default2.aspx.vb" Inherits="ecomm_Default2" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<form id="form1" method="post">
<input id="textfield" type="text" value="My Text" />
<input type="submit" value="Send it" />
</form>
</body>
</html>
代码隐藏部分
Imports System.Diagnostics
Partial Class ecomm_Default2
Inherits System.Web.UI.Page
Protected Sub Page_Load(sender As Object, e As EventArgs) Handles Me.Load
If Request.HttpMethod = "POST" Then
Debug.WriteLine(Request.Form.Count)
End If
End Sub
End Class
您输入的字段缺少名称。确保添加它们:
<input id="textfield" name="foo" type="text" value="My Text" />
<input type="submit" name="bar" value="Send it" />
现在在服务器上您将获得 foo
和 bar
键及其各自的值。
我在提交表单时没有收到任何数据。我希望 Request.Form.Count=2
,但是 RequestForm.Count=0
。
如有任何帮助,我们将不胜感激。
<%@ Page Language="VB" EnableViewState="false" AutoEventWireup="false" CodeFile="Default2.aspx.vb" Inherits="ecomm_Default2" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<form id="form1" method="post">
<input id="textfield" type="text" value="My Text" />
<input type="submit" value="Send it" />
</form>
</body>
</html>
代码隐藏部分
Imports System.Diagnostics
Partial Class ecomm_Default2
Inherits System.Web.UI.Page
Protected Sub Page_Load(sender As Object, e As EventArgs) Handles Me.Load
If Request.HttpMethod = "POST" Then
Debug.WriteLine(Request.Form.Count)
End If
End Sub
End Class
您输入的字段缺少名称。确保添加它们:
<input id="textfield" name="foo" type="text" value="My Text" />
<input type="submit" name="bar" value="Send it" />
现在在服务器上您将获得 foo
和 bar
键及其各自的值。