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
Live Project based Summer Training in Kharar-Wedding Management
Wedding Management - Live Project based Summer Training in Kharar
Following coding has been done by Chandandeep 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 Chandandeep Kaur
Her areas of interest are .NET Development for Desktop Apps, C++, Database Administration, PHP Scripting, Software Training, SQL Server Database, Web Designing, Web Development in ASP.NET, Website Administration, etc., She likes Programming , Drawing, Surfing Internet. And this what she has to say about herself: Heyy! This is Chandandeep Kaur from Gurdaspur. I am pursuing B.Tech. from Rayat Institute of Engineerig and Information Technology,Railmajra. . She has been trained at Hoven where she learnt to write serious, professional level code.
This code creates a form for Wedding Management.This form consists of different fields like-- Customer Name, Date of Booking, Name of Palace selected for booking etc. It is used to keep the record of Palace booked and its Date of booking along with the name of its Customer.The data is stored for future references.In this form, textfields, calender, linkbutton and label are used for its designing and different validations are used for checking and reporting about the fields missed while filling the form.Stored Procedures and Tables are maintained in the database which stores information about booking of palaces.
Language
C# with Desktop
Database
Microsoft SQL Server
IDE
Microsoft Visual Web Developer Express
Video on this Code
Framework Classes
DataSet, SqlConnection, SqlDataAdapter, SqlCommand, Page, RequiredFieldValidator, TextBox, Calender, DropDownList, CustomValidator, ValidationSummary. Namespaces used are System.Web, System,Web,UI, System.Data.SqlClient, System.Web.UI.WebControls
Code Sample
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.Data;
namespace WeddingManagment
{
public partial class Default : System.Web.UI.Page
{
private DataSet GetPalace()
{
using (SqlConnection con = new SqlConnection(CPalace.ConnString))
{
con.Open();
using (SqlDataAdapter da =
new SqlDataAdapter("SELECT palaceName FROM tblPalaceName", con))
{
DataSet ds = new DataSet();
da.Fill(ds);
return ds;
}
}
}
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
DataSet ds = GetPalace();
ddlPalaceName.DataSource = ds;
ddlPalaceName.DataValueField = "palaceName";
ddlPalaceName.DataBind();
}
}
protected void cvDateOfBooking_ServerValidate(object source, ServerValidateEventArgs args)
{
args.IsValid = calDateOfBooking.SelectedDate > DateTime.Now;
}
protected void lnkSubmit_Click(object sender, EventArgs e)
{
lblMessage.Text = "";
if (Page.IsValid)
{
String strINSERTQuery = String.Format(
" INSERT INTO tblPalaceManagement (customerName, dateOfbooking, palaceName) " +
" VALUES ('{0}', '{1:dd-MMM-yyyy}', '{2}')",
txtCustomerName.Text,
calDateOfBooking.SelectedDate,
ddlPalaceName.SelectedValue);
using (SqlConnection con = new SqlConnection(CPalace.ConnString))
{
con.Open();
using (SqlCommand cmd = con.CreateCommand())
{
cmd.CommandText = strINSERTQuery;
try
{
cmd.ExecuteNonQuery();
lblMessage.Text = "Data Saved !";
}
catch (System.Exception ex)
{
lblMessage.Text = "Failed:" + ex.Message;
return;
}
}
}
}
}
}
}
User Reviews
Live Project based Summer Training in Kharar-Wedding Management Reviewed by Harleen on. Best Programming Samples to Clarify Concepts. Rating: 4.92. 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.
Hoven gives me the talent of making software myself. I remember the day when i had completed my first prooject in C++.I got loads of knowlege from hoven.