将信息从一种形式移动到另一种形式

时间:2016-02-15 09:09:48

标签: c# asp.net

How the form looks like currently, I want when its ran and answers are inputted, it goes to a new page titled summary, maybe.我一直在尝试将信息从一种形式从一种形式转移到另一种形式,而不是创建数据库。我希望在一个表单上填写信息,例如可能是简单的注册表单,然后在另一个表单上显示答案。

2 个答案:

答案 0 :(得分:0)

如果您只想将Informantion传递给新表单一次,您可能会想要这样:

private string Name;
private string Password;
private string other;
public Form2 ( string _Name, string _Password, string _other ) 
{
    InitializeComponent();

    Name = _Name;
    Password = _Password;
    other = _other;
}

要拨打新表格,您需要这样:

Form2 frm2 = new Form2 ( NameTextbox.Text, PasswordTextbox.Text, otherTextbox.Text );
frm2.ShowDialog();

因此,您要传输的信息和数据将位于public Form2 ( paramters )

的参数中

答案 1 :(得分:0)

从附图中,我假设您正在制作一些网络应用程序或网站,根据您的要求,我建议您使用query string

按照link

对于您可以使用Booleans的复选框,对于下拉列表的选择,您只需使用strings