通過POST從HTML表單發(fā)送數(shù)據(jù)的格式(附代碼)
發(fā)表時間:2023-08-28 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]從POST表單發(fā)送數(shù)據(jù)時,它具有以下格式:(input字段的name)=(input字段的值)是用&連接的形式。空格和非ASCII字符(如中文)是URL編碼和發(fā)送的。(input字段1的name)=(input字段1的值)&(input字段2的name)=(input字段2的值)&...我們來看具...
從POST表單發(fā)送數(shù)據(jù)時,它具有以下格式:(input字段的name)=(input字段的值)是用&連接的形式?崭窈头茿SCII字符(如中文)是URL編碼和發(fā)送的。
(input字段1的name)=(input字段1的值)&(input字段2的name)=(input字段2的值)&...
我們來看具體的代碼
PostForm.html
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<form method="post" action="PostDest.aspx">
<div>Value-01<input name="value01" type="text" /></div>
<div>Value-02<input name="value02" type="text" /></div>
<div>Value-03
<select id="Select1" name="value03">
<option>元素1</option>
<option>元素2</option>
<option>元素3</option>
<option>元素4</option>
<option>元素5</option>
</select>
</div>
<div>Value-04<br/>
<input id="Radio1" name="RadioGroup1" type="radio" /><label for="Radio1">單選按鈕 元素1</label><br />
<input id="Radio2" name="RadioGroup1" type="radio" /><label for="Radio2">單選按鈕 元素2</label><br />
<input id="Radio3" name="RadioGroup1" type="radio" /><label for="Radio3">單選按鈕 元素3</label><br />
</div>
<div>Value-05<br />
<input id="Chkbox1" name="checkbox1" type="checkbox" /><label for="Checkbox1">檢查項目1</label><br />
</div>
<div>Value-06<br />
<input id="Hidden1" name="hiddenfield1" type="hidden" value="Test Value" /><br />
</div>
<input type="submit" value="POST" />
</form>
</body>
</html>
說明:
帶有HTML的form標簽的表單。通過設(shè)置method =“post”來POST表單數(shù)據(jù)。POST的目標URL由action =“PostDest.aspx”指定。如果未指定,將對同一URL執(zhí)行POST。
服務(wù)器端
服務(wù)器端接收POSTed數(shù)據(jù)并將其顯示,下面使用ASP.NET來構(gòu)建它。
PostDest.html
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PostDest.aspx.cs" Inherits="HtmlForm.PostDest" %>
<!DOCTYPE html>
<html>
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
</div>
</form>
</body>
</html>
PostDest.aspx.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.IO;
namespace HtmlForm
{
public partial class PostDest : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
StreamReader reader = new StreamReader(Request.InputStream);
string str = reader.ReadToEnd();
reader.Close();
Label1.Text = str;
}
}
}
運行結(jié)果:在瀏覽器上將顯示如下所示效果
在文本框或每個字段中輸入值。輸入后,單擊[POST]按鈕。
最后,發(fā)送到服務(wù)器的POST數(shù)據(jù)將顯示在瀏覽器頁面上。
以上就是通過POST從HTML表單發(fā)送數(shù)據(jù)的格式(附代碼)的詳細內(nèi)容,更多請關(guān)注php中文網(wǎng)其它相關(guān)文章!
網(wǎng)站建設(shè)是一個廣義的術(shù)語,涵蓋了許多不同的技能和學(xué)科中所使用的生產(chǎn)和維護的網(wǎng)站。