Send data from one page to another

前端 未结 5 1256
面向向阳花
面向向阳花 2020-12-01 17:28

I am trying to send form data from one page to another using C# ASP.Net. I have two pages default.aspx and default2.aspx.Here is the code I have in default.aspx:

         


        
5条回答
  •  我在风中等你
    2020-12-01 18:06

    another way is to save the data on a database and fetch it back on the other page:

    //update
        string query = "UPDATE table SET col = 'a'";
        SqlCommand command = new SqlCommand(query, connection);
        command.ExecuteScalar();
    
    //select
        string query = "SELECT col FROM table";
        SqlCommand command = new SqlCommand(query, connection);
        string value = command.ExecuteScalar();
    

提交回复
热议问题