i am looking for help on the site point dorknozzle project it wont submit the request details for some reason could anybody help please
below is the code and the sql script for the db
namespace FYP
{
public partial class HelpDesk : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
SqlConnection conn;
SqlCommand categoryComm;
SqlCommand subjectComm;
SqlDataReader reader;
String connectionString = ConfigurationManager.ConnectionStrings[
"FYPConnectionString1"].ConnectionString;
conn = new SqlConnection(connectionString);
// Create command to read the help desk categories
categoryComm = new SqlCommand(
"SELECT CategoryID, Category FROM HelpDeskCategories",
conn);
// Create command to read the help desk subjects
subjectComm = new SqlCommand(
"SELECT Subje ...
Go to the complete details ...