Next .NET Training is Starting from Feb 27, 2013, Book your Seat, Call Now! 9988011975. * Corporate Trainings * Six Month/Six Week Industrial Training for Students
Next PHP Training is Starting from Mar 2, 2013, Book your Seat, Call Now! 9988011975. * Corporate Trainings * Six Month/Six Week Industrial Training for Students
Next C/C++ Training is Starting from Mar 7, 2013, Book your Seat, Call Now! 9988011975.* Corporate Trainings * Six Month/Six Week Industrial Training for Students
Next Core JAVA Course is Starting from Mar 10, 2013, Book your Seat, Call Now! 9988011975.* Corporate Trainings * Six Month/Six Week Industrial Training for Students
Next Android Course is Starting from Mar 12, 2013, Book your Seat, Call Now! 9988011975.* Corporate Trainings * Six Month/Six Week Industrial Training for Students
Next Advanced JAVA Course is Starting from Mar 15, 2013, Book your Seat, Call Now! 9988011975.* Corporate Trainings * Six Month/Six Week Industrial Training for Students
All Trainings are Live Project Based. Video Lectures + SyBooks are provided with each Course.* Corporate Trainings * Six Month/Six Week Industrial Training for Students
Best Institute Java Chandigarh | Best Institute PHP in Chandigarh | Best Institute .NET in Chandigarh
Training in Live Projects with Expert Developers-Reservation Software for Ticketing Shop
Reservation Software for Ticketing Shop - Training in Live Projects with Expert Developers
Following coding has been done by Gurpreet Kaur, who has received training from our company. We are very particular about minute things like naming conventions, proper releasing of heap allocated handles and memory, and also about the use of OOPS programming constructs like enums, const, static qualifiers. Our trainees exhibit all these features in their code. A high quality code always keeps a developer ahead of others. We can cite hundreds of instances where students trained by us have received appreciation letters from their employers. This is possible because of the overall development of a trainee not as a coder but also as a skilled organiser. You too can join us and benefit from our training methodology.
About Gurpreet Kaur
Her areas of interest are .NET Development for Desktop Apps, C++, PHP Scripting, Software Training, SQL Server Database, Web Designing, Web Development in ASP.NET, etc., She likes Surfing Net, Programming ,Dancing.. And this what she has to say about herself: I am Gurpreet Kaur pursuing B.Tech from Rayat Institute of Information Technology . I have knowledge about HTML, Web Designing, PHP, ASP.NET, C++.
. She has been trained at Hoven where she learnt to write serious, professional level code.
This Code is used for Railway Reservation System . This project introduces Railway Reservation System developed in ASP.Net language. By using this system the Raiway Management can assure that user can book the ticket of the train compartment online. By filling the form in which we specify the fields like : The Destination City Name: ,The Date of Departure : , and Select The Class for Journey: , the management can book the ticket for the user and this information can help in managing the records of all the passengers who have booked their seats in the various compartments of the train. In this project we create a database of all information given by every passenger while booking their seat,and which is used to keep the record of every passenger who have booked their seat earlier in the train and which can used by management to assure that which seat is free to book for new passenger in the train.
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;
namespace TicketRegistrationSystem
{
public partial class Default : System.Web.UI.Page
{
private DataSet GetRegistration()
{
using (SqlConnection con = new SqlConnection(cConstants.ConnString))
{
con.Open();
using (SqlDataAdapter da = new SqlDataAdapter(
"SELECT classID , className FROM tblClass", con))
{
DataSet ds = new DataSet();
da.Fill(ds);
return ds;
}
}
}
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
DataSet ds = GetRegistration();
ddlClass.DataSource = ds;
ddlClass.DataTextField = "classID";
ddlClass.DataTextField = "className";
ddlClass.DataBind();
}
}
protected void cvDepartureDate_ServerValidate(object source, ServerValidateEventArgs args)
{
args.IsValid = calDepartureDate.SelectedDate > DateTime.Now;
}
protected void lnkSave_Click(object sender, EventArgs e)
{
lblMsg.Text = "";
if (Page.IsValid)
{
string strINSERTQuery = String.Format(
" INSERT INTO tblClients ( destinationCityName,departureDate,selectClass) " +
" VALUES ('{0}', '{1:dd-MMM-yyyy}','{2}')",
txtCity.Text,
calDepartureDate.SelectedDate,
ddlClass.SelectedValue);
using (SqlConnection con = new SqlConnection(cConstants.ConnString))
{
con.Open();
using (SqlCommand cmd = con.CreateCommand())
{
cmd.CommandText = strINSERTQuery;
try
{
cmd.ExecuteNonQuery();
lblMsg.Text = "Saved!";
}
catch (System.Exception ex)
{
lblMsg.Text = "Failed:" + ex.Message;
return;
}
}
}
}
}
}
}
User Reviews
Training in Live Projects with Expert Developers-Reservation Software for Ticketing Shop Reviewed by Ashish Maurya on. Best Trainers in Chandigarh. Rating: 4.91. I now have the confidence to build a great website with ASP.NET web services ! The best thing I appreciate is the use of web services DAL throughout the project, in every module, and the testing I witnessed. Each scenario was practiced too many times, I now plan to come back for advanced .NET course at Hoven. Another thing, the whole course is conducted in the lab with laptops, no boring chalk and board or PPT lectures.
I would like to say that this is the best institute for C/C++ training. I have done many projects in both and can tell you that it not only helped me in understanding core concepts but also gave me an indepth view of the technology to enhance my skills and to gain expertise. Later, I joined Hoven again for .NET classes to raise my bar in technology and to boost up my career.