ASP.NET提交表单怎么写
<%@PageLanguage="C#"AutoEventWireup="true"CodeFile="Default.aspx.cs"Inherits="_Defaul...
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
.style1
{}
</style>
</head>
<body alink="#ffcccc" bgcolor="#cccccc">
<form id="form1" runat="server">
<div class="style1"
style="text-align: center; font-family: 微软雅黑; font-size: xx-small;">
用户名<br />
<asp:TextBox ID="TextBox1" runat="server" BorderStyle="Solid" BorderWidth="1px"></asp:TextBox>
<div class="style1"
style="text-align: center; font-family: 微软雅黑; font-size: xx-small;">
密码<br />
<asp:TextBox ID="TextBox2" runat="server" BorderStyle="Solid" BorderWidth="1px"></asp:TextBox>
</div>
</div>
<p style="text-align: center">
<asp:Button ID="Button1" runat="server" Text="一键登录服务器" BackColor="Black"
BorderColor="White" BorderStyle="None" BorderWidth="2px" Font-Names="微软雅黑"
Font-Size="X-Small" ForeColor="White" Height="25px" onclick="Button1_Click"
style="text-align: center" ToolTip="会先登录到服务器后删除您的说说" />
</p>
<div style="text-align: center; font-family: 微软雅黑; font-size: xx-small; color: #000000;">
本站目前只支持一键删除QQ说说</div>
</form>
</body>
</html>
把TextBox1 TextBox2 POST提交给另一个页面
把TextBox1 TextBox2 POST提交给Get.asp 展开
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
.style1
{}
</style>
</head>
<body alink="#ffcccc" bgcolor="#cccccc">
<form id="form1" runat="server">
<div class="style1"
style="text-align: center; font-family: 微软雅黑; font-size: xx-small;">
用户名<br />
<asp:TextBox ID="TextBox1" runat="server" BorderStyle="Solid" BorderWidth="1px"></asp:TextBox>
<div class="style1"
style="text-align: center; font-family: 微软雅黑; font-size: xx-small;">
密码<br />
<asp:TextBox ID="TextBox2" runat="server" BorderStyle="Solid" BorderWidth="1px"></asp:TextBox>
</div>
</div>
<p style="text-align: center">
<asp:Button ID="Button1" runat="server" Text="一键登录服务器" BackColor="Black"
BorderColor="White" BorderStyle="None" BorderWidth="2px" Font-Names="微软雅黑"
Font-Size="X-Small" ForeColor="White" Height="25px" onclick="Button1_Click"
style="text-align: center" ToolTip="会先登录到服务器后删除您的说说" />
</p>
<div style="text-align: center; font-family: 微软雅黑; font-size: xx-small; color: #000000;">
本站目前只支持一键删除QQ说说</div>
</form>
</body>
</html>
把TextBox1 TextBox2 POST提交给另一个页面
把TextBox1 TextBox2 POST提交给Get.asp 展开
3个回答
展开全部
在form那个位置改成<form id="form1" runat="server" action=“—” type=“post”>,“--”是你要提交的页面
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在后台可以直接 this.控件ID.text 来取值
要提交到别别的页面,就需要修改form表单的action指向
post 提交,在需要接收数据的页面 request.form["控件ID"]
要提交到别别的页面,就需要修改form表单的action指向
post 提交,在需要接收数据的页面 request.form["控件ID"]
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询