Response.Redirect не переносит текстовые поля в текстовое поле на другой странице C#
У меня возникают проблемы при попытке передать значения в каждом из моих текстовых полей на странице frmPersonnel.aspx на мою страницу frmPersonnelVerified.aspx, которая содержит 1 текстовое поле. Мне нужно передать значения текстового поля через код, а не свойство "PostBackUrl" для кнопки отправки. Из того, что я могу сказать, страница frmPersonnelVerified имеет 5 возвратов в текстовом поле. Таким образом, кажется, что есть значения, которые необходимо передать, но в текстовом поле на странице frmPersonnelVerified на самом деле не указано ни одного значения.
frmPersonnel.aspx
using System;
using`enter code here` System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class frmPersonnel : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btnCancel_Click(object sender, EventArgs e)
{
//When the "Cancel" button is selected, the user will be brought back to the home page
Response.Redirect("frmMain.aspx");
}
protected void btnSubmit_Click(object sender, EventArgs e)
{
DateTime StartDate, EndDate;
StartDate = Convert.ToDateTime(txtStartDate.Text);
EndDate = Convert.ToDateTime(txtEndDate.Text);
Panel1.Controls.Add(new LiteralControl("<br />"));
if (string.IsNullOrWhiteSpace(txtFirstName.Text))
{
txtFirstName.BackColor = System.Drawing.Color.Yellow;
Panel1.Controls.Add(new LiteralControl("<br />"));
Panel1.Controls.Add(new LiteralControl("<font style= 'color:Red;' > First Name Required!"));
}
if (string.IsNullOrWhiteSpace(txtLastName.Text))
{
txtLastName.BackColor = System.Drawing.Color.Yellow;
Panel1.Controls.Add(new LiteralControl("<br />"));
Panel1.Controls.Add(new LiteralControl("<font style= 'color:Red;' > Last Name Required!"));
}
if (string.IsNullOrWhiteSpace(txtPayRate.Text))
{
txtPayRate.BackColor = System.Drawing.Color.Yellow;
Panel1.Controls.Add(new LiteralControl("<br />"));
Panel1.Controls.Add(new LiteralControl("<font style= 'color:Red;' > Pay Rate Required!"));
}
if (string.IsNullOrWhiteSpace(txtStartDate.Text))
{
txtPayRate.BackColor = System.Drawing.Color.Yellow;
Panel1.Controls.Add(new LiteralControl("<br />"));
Panel1.Controls.Add(new LiteralControl("<font style= 'color:Red;' > Start Date Required!"));
}
if (string.IsNullOrWhiteSpace(txtEndDate.Text))
{
txtPayRate.BackColor = System.Drawing.Color.Yellow;
Panel1.Controls.Add(new LiteralControl("<br />"));
Panel1.Controls.Add(new LiteralControl("<font style= 'color:Red;' > End Date Required!"));
}
// verify that the end date is larger than the start date
if (EndDate < StartDate)
{
txtEndDate.BackColor = System.Drawing.Color.Yellow;
txtStartDate.BackColor = System.Drawing.Color.Yellow;
Panel1.Controls.Add(new LiteralControl("<br />"));
Panel1.Controls.Add(new LiteralControl("<font style= 'color:Red;' > Start Date is Greater than End Date!"));
}
// If all textboxes are populated, pass the values to the frmPersonnelVerified page
if (txtFirstName.Text != "" && txtLastName.Text != "" && txtPayRate.Text != "" && txtStartDate.Text != "" && txtEndDate.Text != "")
{
Session["txtFirstName"] = txtFirstName.Text;
Session["txtLastName"] = txtLastName.Text;
Session["txtPayRate"] = txtPayRate.Text;
Session["txtStartDate"] = txtStartDate.Text;
Session["txtEndDate"] = txtEndDate.Text;
//Need to set session variables for all text boxes
Response.Redirect("frmPersonnelVerified.aspx");
}
}
}
frmPersonnelVerified.aspx
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class frmPersonnelVerified : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
//Utilize the textbox information to forward to the frmPersonnelVerified page from another page
txtVerifiedInfo.Text = Request["txtFirstName"] +
"\n" + Request["txtLastName"] +
"\n" + Request["txtPayRate"] +
"\n" + Request["txtStartDate"] +
"\n" + Request["txtEndDate"];
}
}
2 ответа
Хотя это пока не рекомендуется, поскольку вы помещаете значения текстовых полей в объекты сеанса, вы можете просто получить их, как показано ниже, в файле frmPersonnelVerified.aspx.
....
public partial class frmPersonnelVerified : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
//Utilize the textbox information to forward to the frmPersonnelVerified page from another page
txtVerifiedInfo.Text = Session["txtFirstName"].ToString() +
"\n" + Session["txtLastName"].ToString() +
"\n" + Session["txtPayRate"].ToString() +
"\n" + Session["txtStartDate"].ToString() +
"\n" + Session["txtEndDate"].ToString();
}
}
Вы можете попробовать это:
txtVerifiedInfo.Text = new
StringBuilder(Session["txtFirstName"].ToString())
.Append("\n")
.Append(Session["txtLastName"])
.Append("\n")
.Append(Session["txtPayRate"])
.Append("\n")
.Append(Session["txtStartDate"])
.Append("\n")
.Append(Session["txtEndDate"]).ToString();
В вашем frmPersonnel.aspx вы также можете сделать это:
// If all textboxes are populated, pass the values to the frmPersonnelVerified page
if (!string.IsNullOrEmpty(txtFirstName.Text) && !string.IsNullOrEmpty(txtLastName.Text) && !string.IsNullOrEmpty(txtPayRate.Text) && !string.IsNullOrEmpty(txtStartDate.Text) && !string.IsNullOrEmpty(txtEndDate.Text))
{
string delim = "\n";
Session["txtData"] = txtFirstName.Text + delim +
txtLastName.Text + delim +
txtPayRate.Text + delim +
txtStartDate.Text + delim +
txtEndDate.Text;
//Need to set session variables for all text boxes
Response.Redirect("frmPersonnelVerified.aspx");
}