aspx TextBox1.Text World.aspx TextBox1.Text
ページ Hello.aspx と World.aspx に同じ検証値が必要です
誰かがこれについて考えているのを助けてください
aspx TextBox1.Text World.aspx TextBox1.Text
ページ Hello.aspx と World.aspx に同じ検証値が必要です
誰かがこれについて考えているのを助けてください
Cookieやデータベースなどを使用して、最初のページの値を保存する必要があります。次に、2ページ目の値を取得し、検証関数またはイベントの値を比較します。
using(SqlConnection cn = new SqlConnection(connStr))
{
using(SqlCommand cmd = new SqlCommand())
{
cmd.Connection = cn;
string sql = string.Format(@"select email from customers where customer_id = '{0}'", customer_id);
cmd.CommandType = CommandType.Text;
//try and catch block would go here
cmd.CommandText = sql;
cn.Open();
SqlDataReader rdr = cmd.ExecuteReader();
string email = rdr[0].ToString();
cn.Close();
}
}