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
Best Training in Live Projects in JAVA in Chandigarh, Mohali-Movie Release System
Movie Release System - Best Training in Live Projects in JAVA in Chandigarh, Mohali
Following coding has been done by Amandeep 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 Amandeep Kaur
Her areas of interest are .NET Development for Desktop Apps, PHP Scripting, Software Training, SQL Server Database, Web Designing, Web Development in ASP.NET, Website Administration, etc., She likes Listening Music, Programming.. And this what she has to say about herself: MySelf Amandeep Kaur Doing Btech from rayat college.i have interest in Html, php, web designing and asp .net..
In this project we have given the whole movie information like which movie will release in which theater on what date. Here we are heaving two tables one from where we get the name of the cities and the other is where we have to store the id, movie name, ReleaseDate, ReleaseInTheaters. here movie is entered manually and we use dropdownlist in which city name is shown in the front end and there corresponding theaters are tored in the table.we use custom validator which is useful for the server side validation.nd one more interesting thing ie. validation summery is also used in this project which shows all the error messages together.
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 MovieInfoForm
{
public partial class Default : System.Web.UI.Page
{
private DataSet GetTheaters()
{
using (SqlConnection con = new SqlConnection(CConstants.ConnString))
{
con.Open();
using (SqlDataAdapter da =
new SqlDataAdapter("SELECT City, theaterNames FROM tblMovies ", con))
{
DataSet ds = new DataSet();
da.Fill(ds);
return ds;
}
}
}
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
DataSet ds = GetTheaters();
ddlTheaters.DataSource = ds;
ddlTheaters.DataTextField = "City";
ddlTheaters.DataValueField = "theaterNames";
ddlTheaters.DataBind();
}
}
protected void cvReleaseDate_(object source, ServerValidateEventArgs args)
{
}
protected void cvReleaseDate_ServerValidate(object source, ServerValidateEventArgs args)
{
args.IsValid = CalReleaseDate.SelectedDate > DateTime.Now;
}
protected void lnkButton_Click(object sender, EventArgs e)
{
lblMessage.Text = "";
if (Page.IsValid)
{
String strINSERTQuery = String.Format(
" INSERT INTO tblTheaters(MovieName,ReleaseDate,ReleaseInTheaters) " +
" VALUES ('{0}', '{1:dd-MMM-yyyy}','{2}')",
txtMovieNames.Text,
CalReleaseDate.SelectedDate,
ddlTheaters.SelectedValue
);
using (SqlConnection con = new SqlConnection(CConstants.ConnString))
{
con.Open();
using (SqlCommand cmd = con.CreateCommand())
{
cmd.CommandText = strINSERTQuery;
try
{
cmd.ExecuteNonQuery();
lblMessage.Text = "Saved !";
}
catch (System.Exception ex)
{
lblMessage.Text = "Failed:" + ex.Message;
return;
}
}
}
}
}
}
}
User Reviews
Best Training in Live Projects in JAVA in Chandigarh, Mohali-Movie Release System Reviewed by Akash Deep on. Strongly Recommended for Industrial Training. Rating: 4.92. ASP.NET was a really solid course. As someone who needs to immediately apply ASP.NET principles to real-world problems, I was very pleased that the ASP.NET course covered the material that is most relevant to me - all in one capsule form. The SyBook based training strategy rocks ! At Hoven they donot follow the out-dated PPT or chalk-board training. It is coding, coding and coding.
Hoven's trainers are experts in the fields in which they teach - you benefit from their extensive, real world knowledge and expertise. The trainers are knowledgeable. They know the hurdles we face and our mind-set, so they know in advance the approaches we are likely to take and what mistakes we are likely to make. Hoven is indispensible for a fresher.