Posted on: 10/24/2014 11:50:19 AM | Views : 496

I need some help, pls!
I created database in VS and after input all my data in form, the SUBMIT button won't redirect my current page to manager.aspx page.
I put my source code down below, any suggestions???

using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Data.SqlClient; using System.Configuration; public partial class Registration : System.Web.UI.Page {     protected void Page_Load(object sender, EventArgs e)     {         if(IsPostBack)         {             SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["RegistrationConnectionString"].ConnectionString);     ...

Go to the complete details ...