0

我是 Asp.net 的新手。我创建了一个登录页面,用于检索 DataTable 中的用户信息。我将此信息存储在会话变量中。

这是代码:

 using System;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Data;
using System.Web.Configuration; 


public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}
protected void btnSubmit_Click(object sender, EventArgs e)
{
    SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["dbconnection"].ConnectionString);
    con.Open();
    SqlCommand cmd = new SqlCommand("select * from UserTable where UserName =@username and Password=@password", con);
    cmd.Parameters.AddWithValue("@username", txtUserName.Text);
    cmd.Parameters.AddWithValue("@password", txtPWD.Text);
    SqlDataAdapter da = new SqlDataAdapter(cmd);
    DataTable dt = new DataTable();
    da.Fill(dt);
    if (dt.Rows.Count > 0)
    {
        Session["userdata"] = dt;
        Response.Redirect("Home.aspx");
    }
    else
    {
        ClientScript.RegisterStartupScript(Page.GetType(), "validation", "<script language='javascript'>alert('Invalid Username and Password')</script>");
    }
}
}

现在想在 Home.aspx 中显示 DataTable 信息。我怎样才能做到这一点?

4

5 回答 5

4

使用网格视图..

<asp:GridView ID="GridView1" runat="server">
</asp:GridView>

在运行时,它只呈现为表格..

然后

GridView1.DataSource=Session[userdata];
GridView1.DataBind();
于 2013-09-06T07:10:24.260 回答
3

主页.aspx

<asp:Label ID="lblUserName" runat="server" />

后面的代码

protected void Page_Load(object sender, EventArgs e)
{

    DataTable dt=new DataTable();
    dt= (DataTable)Session["userdata"] ;
    lblUserName.Text=dt.Rows[0]["UserName"].ToString();//your cloumn name;

}
于 2013-09-06T06:58:21.810 回答
1

您可以在 Home.aspx 上使用以下方法之一检索您的数据表

DataTable dtTable = Session["userdata"] as DataTable

或者

DataTable dtTable= (DataTable)Session["userdata"];

提取数据——

dtTable.rows[rowindex][columnindex] // Ex: dtTable.rows[0][0]

或者如果您知道列名

dtTable.rows[rowindex][columnname] // Ex: dtTable.rows[0]["yourColumnName"] 
于 2013-09-06T06:57:41.877 回答
1

Home.aspx你可以做如下

protected void Page_Load(object sender, EventArgs e)
{
     DataTable dt = (DataTable)Session["userdata"]
     gridview.DataSource =dt;
     gridview.DataBind();
}
于 2013-09-06T06:57:42.317 回答
1

在您的 Home.aspx 中,为您想要显示的有关用户的信息添加标签。假设您要显示用户名,然后添加:

<asp:Label ID="lblUserName" runat="server" />

在后面的代码中,添加:

protected void Page_Load(object sender, EventArgs e)
{
    DataTable dt = (DataTable)Session["userdata"] ;
    lblUserName.Text = dt.Rows[0]["UserName"].ToString();
}
于 2013-09-06T07:02:46.207 回答