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
Six Weeks Summer Training in Core JAVA in Kharar-Birth Certificate Registration Form
Birth Certificate Registration Form - Six Weeks Summer Training in Core JAVA in Kharar
Following coding has been done by Dupinder Deep 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 Dupinder Deep Kaur
Her areas of interest are .NET Development for Desktop Apps, C++, PHP CMS Systems, Web Development in ASP.NET, etc., She likes net surffing,reading books, playing badminton. And this what she has to say about herself: I am Dupinder Deep Kaur. I have done Masters in Computer Application from Chandigarh Group of Colleges,Landran,Mohali.Before going through this training i felt, i can never do programming, but now i am very much sure about .NET programming ethics.This training develop my interest in programming. Now,I would like to develop my programming skills more.. She has been trained at Hoven where she learnt to write serious, professional level code.
This module is consist of making record of birth. It include person's name, date of birth and the city of birth.In this form we use custom validator to validate the calander dates. One more thing is also used in this module i.e validationSummary, to validate the whole data entered into the form. A function is called named DataSet to fetch the names that are stored in the database to show in the dropdown list of cities.Then their is page load which contains the UnobtrusiveValidationMode and data of cities.calshortcode is taken as primary key.The click on Save is used to save the data entered into the database table related to the birth.
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 BirthCertificate
{
public partial class birthcertificate : System.Web.UI.Page
{
private DataSet GetDeveloper()
{
using (SqlConnection con = new SqlConnection(CConstants.ConnString))
{
con.Open();
using (SqlDataAdapter da = new SqlDataAdapter("SELECT calCitiesNames, calShortCode FROM tblCities ", con))
{
DataSet ds = new DataSet();
da.Fill(ds);
return ds;
}
}
}
protected void Page_Load(object sender, EventArgs e)
{
UnobtrusiveValidationMode = UnobtrusiveValidationMode.None;
if (!IsPostBack)
{
DataSet ds = GetDeveloper();
ddlCities.DataSource = ds;
ddlCities.DataTextField = "calCitiesNames";
ddlCities.DataValueField = "calShortCode";
ddlCities.DataBind();
}
}
protected void cv_ServerValidate(object source, ServerValidateEventArgs args)
{
args.IsValid = calBirthDate.SelectedDate > DateTime.Now;
}
protected void lnksave_Click(object sender, EventArgs e)
{
lblMessage.Text = "";
if (Page.IsValid)
{
String strINSERTQuery = String.Format("INSERT INTO tblcertificate (calName, calBirthDate, calCities) " + " VALUES ('{0}', '{1:dd-MMM-yyyy}', '{2}')",
txtName.Text, calBirthDate.SelectedDate, ddlCities.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
Six Weeks Summer Training in Core JAVA in Kharar-Birth Certificate Registration Form Reviewed by Aditya Agrawal on. Cool Industrial Training. Rating: 4.96. The programming experience in Hoven I would like to say it was altogether a good experience, I have learnt a lot and planning to play a game in the world of ASP.NET
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.