我遇到了ui-router的重载问题。
我的导航栏链接到submitForm页面:
using (SqlConnection sqlConnection = new SqlConnection())
{
sqlConnection.ConnectionString = "Data Source=TOMMY-PC\\SQLEXPRESS; Initial Catalog=Test; Integrated Security=True;";
sqlConnection.Open();
SqlCommand sqlCommand = new SqlCommand("SELECT * FROM dbo.Users");
sqlCommand.Connection = sqlConnection;
SqlDataAdapter adapter = new SqlDataAdapter();
DataTable table = new DataTable();
adapter.SelectCommand = sqlCommand;
adapter.Fill(table);
if ((string)table.Rows[0]["Name"] == textBox2.Text)
{
MessageBox.Show("Founded");
}
}
如果有人试图编辑以前创建的表单,submitForm也可以获取参数。导航栏应始终链接到无参数版本。
但是,如果我在带参数的版本上,则导航栏只会重新加载具有相同参数的页面。
我知道为什么或如何解决这个问题?谢谢!