表单发布通过Request.QueryString而不是Request.Form发送值

时间:2009-02-20 03:05:05

标签: c# html forms post

以下是标准HTML页面中的HTML摘录:

<form name="login_form" action="http://localhost/BOB.WebPortal/LoginForm.aspx" method="post>
        <div id="content_logins">

            <div id="spacer_ie" style="width:990px; height:7px; border:none; float:left"></div>
            <div style="width:255px; height:22px; border:none; float:left"></div>
            <div style="width:172px; border:none; float:left; vertical-align:bottom">
                    <input type="text" name="uname" id="uname" size="13" /></div>
                <div style="width:110px; border:none; float:left">
                    <input type="password" name="pword" id="pword" size="13" /></div>
                <div style="width:140px; height:22px; border:none; margin-top:-2px; float:left">
                    <!--input class="btbgfix" type="image" src="images/submit.png" alt="Submit" value="Login"-->
                <input name="submit" id="loginButton" class="btbgfix" type="image" src="images/submit.png" alt="Submit" value="Login"></div>
            <div style="width:320px; height:22px border:none; float:left">
                <img name="login" src="x.gif" id="alogin" usemap="#m_login" border="0" width="320" height="22" />
                <map name="m_login" id="m_login">
                    <area shape="rect" coords="0,0,681,22" href="https://www.aetmyportfolio.com.au" target="_blank" alt="Go to AET My Portfolio" />
                </map>
            </div>  

            </div> 
    </form>

我的问题是我正在尝试使用Request.Form从我的ASP.Net应用程序中的C#代码隐藏文件的Page_Load事件中检索post值uname和pword。但是我发现Request.Form是空的。但是,如果我使用Request.Params,那么我可以访问这些值,因为它们作为URL中的查询字符串值传递。

我在HTML中做错了什么?

2 个答案:

答案 0 :(得分:8)

假设这是HTML中的直接复制粘贴,您在“post”结尾处缺少结束语。

答案 1 :(得分:2)

由于您正在使用标准HTML页面进行登录控制,因此似乎runat =“server”不会解决您的所有问题。以下是我如何复制您的解决方案的快速示例。它似乎正确地获取了值。

登录页面

    <!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>
    <title></title>
</head>
<body>
    <form name="login_form" action="Default.aspx" method="post">
    <div id="content_logins">
            user:<input type="text" name="uname" id="uname" size="13" /><br />
            pass:<input type="password" name="pword" id="pword" size="13" /><br />
            <input name="submit" id="loginButton" type="submit" alt="Submit" value="Login">
    </div>
    </form>
</body>
</html>

<强> Default.aspx的

    <%@ 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>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
        <br />
        <asp:Label ID="Label2" runat="server" Text="Label"></asp:Label>
    </div>
    </form>
</body>
</html>

<强> Default.aspx.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class _Default : System.Web.UI.Page 
{
    protected void Page_Load(object sender, EventArgs e)
    {
        this.Label1.Text = Request.Params["uname"].ToString();
        this.Label2.Text = Request.Params["pword"].ToString();
    }
}