Posted on: 6/18/2014 11:51:25 PM | Views : 351

I'm fairly new to programing and looking into creating a leave system for my work.
I created a "New Request" page, where people will get would apply for a leave request.
I'm stumped and don't know what I'm doing wrong, When I run the program, I'm able to enter the info and choose from the dropdown list BUT when I press submit,  nothing happens. Can somebody please help or guide me in the right direction. 
Thanks in advance.
Kadimus
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Data; using System.Data.SqlClient; public partial class NewRequest : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void btnSubmit_Click(object sender, EventArgs e) { using (SqlConnection sqlConn = new SqlConnection("Data ...

Go to the complete details ...